__openerp__.py 588 B

1234567891011121314151617181920212223
  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. 'pos_customize_product_pack',
  13. ],
  14. 'data': [
  15. "template.xml",
  16. ],
  17. 'qweb': [
  18. 'static/src/xml/pos_receipt.xml',
  19. ],
  20. 'license': 'AGPL-3',
  21. 'installable': True,
  22. 'auto_install': False,
  23. }