You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
2.3 KiB

14 years ago
10 years ago
14 years ago
  1. # -*- coding: utf-8 -*-
  2. # Python source code encoding : https://www.python.org/dev/peps/pep-0263/
  3. ##############################################################################
  4. #
  5. # OpenERP, Open Source Management Solution
  6. # Copyright (C) 2004-2010 Tiny SPRL
  7. # http://tiny.be
  8. # Copyright (C) 2010-2012 ChriCar Beteiligungs- und Beratungs- GmbH
  9. # http://www.camptocamp.at
  10. # Copyright (C) 2015 Antiun Ingenieria, SL (Madrid, Spain)
  11. # http://www.antiun.com
  12. # Antonio Espinosa <antonioea@antiun.com>
  13. #
  14. # This program is free software: you can redistribute it and/or modify
  15. # it under the terms of the GNU Affero General Public License as
  16. # published by the Free Software Foundation, either version 3 of the
  17. # License, or (at your option) any later version.
  18. #
  19. # This program is distributed in the hope that it will be useful,
  20. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. # GNU Affero General Public License for more details.
  23. #
  24. # You should have received a copy of the GNU Affero General Public License
  25. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  26. #
  27. ##############################################################################
  28. {
  29. # Addon information
  30. 'name': 'Partner Identification Numbers',
  31. 'category': 'Customer Relationship Management',
  32. 'version': '1.0',
  33. 'depends': [
  34. 'crm',
  35. ],
  36. 'external_dependencies': {},
  37. # Views templates, pages, menus, options and snippets
  38. 'data': [
  39. 'views/res_partner_id_category_view.xml',
  40. 'views/res_partner_id_number_view.xml',
  41. 'views/res_partner_view.xml',
  42. 'security/ir.model.access.csv',
  43. ],
  44. # Qweb templates
  45. 'qweb': [
  46. ],
  47. # Your information
  48. 'author': 'ChriCar Beteiligungs- und Beratungs- GmbH, '
  49. 'Antiun Ingeniería S.L.',
  50. 'maintainer': 'ChriCar Beteiligungs- und Beratungs- GmbH, '
  51. 'Antiun Ingeniería S.L.',
  52. 'website': 'http://www.camptocamp.at, '
  53. 'http://www.antiun.com',
  54. 'license': 'AGPL-3',
  55. # Technical options
  56. 'demo': [],
  57. 'test': [],
  58. 'installable': True,
  59. # 'auto_install':False,
  60. # 'active':True,
  61. }