__openerp__.py 585 B

12345678910111213141516171819202122
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': 'Eiru Pos Session add Purchases and Expenses',
  4. 'author': 'Adrielso Kunert',
  5. 'version': '0.0.1',
  6. 'category': 'account, pos',
  7. 'description': "Este modulo agregara dos botones en la sesión del pos que permitirá registra un gasto o una compra..",
  8. 'depends': [
  9. 'eiru_assets',
  10. 'point_of_sale',
  11. 'purchase',
  12. 'account',
  13. 'eiru_account_bank_statement_pos',
  14. ],
  15. 'data': [
  16. 'views/templates.xml'
  17. ],
  18. 'qweb': [
  19. 'static/src/xml/*.xml',
  20. ],
  21. 'installable': True,
  22. }