__openerp__.py 764 B

1234567891011121314151617181920212223242526272829303132
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "Eiru Reporting Dashboard",
  4. 'author': "Eiru",
  5. 'website': "http://www.yourcompany.com",
  6. 'category': 'Uncategorized',
  7. 'version': '0.1',
  8. 'depends': [
  9. 'base',
  10. 'account',
  11. 'eiru_assets',
  12. 'currency_utility',
  13. 'sale',
  14. 'purchase',
  15. 'multi_store',
  16. 'eiru_dashboard_objetive',
  17. ],
  18. 'data': [
  19. 'views/chart_config.xml',
  20. 'views/res_users.xml',
  21. 'views/actions.xml',
  22. 'views/menus.xml',
  23. 'templates.xml',
  24. 'security/ir.model.access.csv',
  25. 'data/charts_data.xml',
  26. ],
  27. 'qweb': [
  28. 'static/src/xml/*.xml',
  29. 'static/src/xml/widgets/*.xml',
  30. 'static/src/xml/charts/*.xml',
  31. ]
  32. }