__openerp__.py 651 B

12345678910111213141516171819202122232425
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "Eiru Legal 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. 'pos_sequence_ref_number',
  13. ],
  14. "data": [
  15. "template.xml",
  16. "views/account_journal.xml"
  17. ],
  18. 'qweb': [
  19. 'static/src/xml/pos.xml',
  20. 'static/src/xml/pos_receipt.xml',
  21. ],
  22. 'license': 'AGPL-3',
  23. 'installable': True,
  24. 'auto_install': False,
  25. }