__openerp__.py 582 B

1234567891011121314151617181920212223242526
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "Eiru POS",
  4. 'author': "Robert Gauto",
  5. 'category': 'Uncategorized',
  6. 'version': '0.1',
  7. 'depends': [
  8. 'base',
  9. 'sale',
  10. 'account',
  11. 'currency_utility',
  12. 'eiru_product_extra_price',
  13. 'eiru_sidebar_toggler',
  14. 'eiru_topbar_toggler',
  15. 'eiru_bank_payments_references',
  16. 'multi_store',
  17. 'multi_store_stock'
  18. ],
  19. 'data': [
  20. 'templates.xml',
  21. 'security/eiru_pos_security.xml'
  22. ],
  23. 'qweb': [
  24. 'static/report/ticket_template.xml'
  25. ]
  26. }