__openerp__.py 493 B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "Eiru Small Ticket",
  4. 'summary': """This module print POS receipt.""",
  5. 'author': "Cybrosys Techno Solutions - 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. 'qweb': [
  14. 'static/src/xml/pos_receipt.xml',
  15. ],
  16. 'license': 'AGPL-3',
  17. 'installable': True,
  18. 'auto_install': False,
  19. }