__openerp__.py 466 B

123456789101112131415161718192021222324
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "Eiru Reports MRP",
  4. 'author': "Eiru",
  5. 'category': 'report',
  6. 'version': '0.1',
  7. 'depends': [
  8. 'base',
  9. 'mrp',
  10. 'eiru_mrp_cost',
  11. 'account',
  12. 'eiru_assets',
  13. 'eiru_reports',
  14. ],
  15. 'qweb': [
  16. 'static/src/xml/*.xml',
  17. 'static/src/reports/*.xml'
  18. ],
  19. 'data': [
  20. 'templates.xml',
  21. 'views/actions.xml',
  22. 'views/menus.xml',
  23. ],
  24. }