__openerp__.py 542 B

12345678910111213141516171819202122
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "Eiru - Bill and Kitchen Ticket",
  4. 'summary': """This module print POS receipt and kitchen ticket.""",
  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. ],
  13. 'data': [
  14. "template.xml",
  15. ],
  16. 'qweb': [
  17. 'static/src/xml/pos_receipt.xml',
  18. ],
  19. 'license': 'AGPL-3',
  20. 'installable': True,
  21. 'auto_install': False,
  22. }