__openerp__.py 342 B

12345678910111213141516
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "eiru_reporting",
  4. 'author': "Your Company",
  5. 'website': "http://www.yourcompany.com",
  6. 'category': 'Uncategorized',
  7. 'version': '0.1',
  8. 'depends': ['base'],
  9. 'data': [
  10. 'templates.xml',
  11. ],
  12. 'qweb': [
  13. 'static/src/xml/*.xml',
  14. 'static/src/reports/*.xml'
  15. ]
  16. }