__openerp__.py 541 B

1234567891011121314151617181920
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "Eiru Dashboard",
  4. 'author': "Robert Gauto/Adrielso Kunert",
  5. 'website': "http://www.yourcompany.com",
  6. 'category': 'Uncategorized',
  7. 'version': '0.1',
  8. 'depends': ['base', 'sale', 'eiru_assets', 'eiru_reporting','currency_utility'],
  9. 'data': [
  10. 'templates.xml',
  11. 'views/customer.xml',
  12. 'views/products.xml',
  13. 'views/actions.xml',
  14. 'views/menus.xml'
  15. ],
  16. 'qweb': [
  17. 'static/src/xml/*.xml',
  18. 'static/src/xml/widgets/*.xml'
  19. ]
  20. }