__openerp__.py 604 B

123456789101112131415161718192021222324252627
  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_sidebar_toggler',
  13. 'eiru_topbar_toggler',
  14. 'eiru_bank_payments_references',
  15. 'eiru_payments_invoices',
  16. 'multi_store',
  17. 'multi_store_stock',
  18. 'product_pack'
  19. ],
  20. 'data': [
  21. 'templates.xml',
  22. 'security/eiru_pos_security.xml'
  23. ],
  24. 'qweb': [
  25. 'static/report/ticket_template.xml'
  26. ]
  27. }