__openerp__.py 588 B

123456789101112131415161718192021222324
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "Eiru Nutty Bavariant Invoice",
  4. 'summary': """This module print POS receipt.""",
  5. 'author': "Eiru",
  6. 'website': "http://www.eiru.com.py",
  7. 'category': 'Point of Sale',
  8. 'version': '0.1',
  9. 'depends': [
  10. 'base',
  11. 'point_of_sale',
  12. 'eiru_num2word',
  13. ],
  14. "data": [
  15. "template.xml",
  16. ],
  17. 'qweb': [
  18. 'static/src/xml/pos.xml',
  19. 'static/src/xml/pos_receipt.xml',
  20. ],
  21. 'license': 'AGPL-3',
  22. 'installable': True,
  23. 'auto_install': False,
  24. }