__openerp__.py 508 B

12345678910111213141516171819202122
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': 'Factory Reference in Invoice',
  4. 'version': '1.0',
  5. 'description': """
  6. """,
  7. 'category': 'extra tool',
  8. 'author': 'Eiru Software',
  9. 'website': 'http://www.eiru.com.py/',
  10. 'license': 'AGPL-3',
  11. 'depends': [
  12. 'account'
  13. ],
  14. 'data': [
  15. 'views/templates.xml',
  16. 'views/account_invoice.xml',
  17. ],
  18. 'demo_xml': [],
  19. 'test': [],
  20. 'installable': True,
  21. }
  22. # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: