__openerp__.py 477 B

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