__openerp__.py 921 B

12345678910111213141516171819202122232425262728
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': 'Eiru Base for Services',
  4. 'version': '1.0',
  5. 'summary': 'Base for services Operations',
  6. 'description': 'Vehicle workshop operations & Its reports',
  7. 'category': 'Industries',
  8. 'author': 'Cybrosys Techno Solutions - Eiru',
  9. 'company': 'Cybrosys Techno Solutions - Eiru',
  10. 'website': "http://www.eiru.com.py",
  11. 'depends': ['base',
  12. 'account_accountant'],
  13. 'data': [
  14. 'views/project_service.xml',
  15. 'views/project_service_task.xml',
  16. 'views/project_service_activity.xml',
  17. 'views/project_service_material.xml',
  18. 'views/project_service_stage.xml',
  19. 'views/product_service.xml',
  20. 'views/product_service_brand.xml',
  21. 'views/template.xml',
  22. 'security/ir.model.access.csv',
  23. ],
  24. 'license': 'AGPL-3',
  25. 'installable': True,
  26. 'auto_install': False,
  27. 'application': True,
  28. }