__manifest__.py 787 B

1234567891011121314151617181920212223242526
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'POS Six',
  5. 'version': '1.0',
  6. 'category': 'Sales/Point Of Sale',
  7. 'sequence': 6,
  8. 'summary': 'Integrate your POS with a Six payment terminal',
  9. 'data': [
  10. 'views/pos_payment_method_views.xml',
  11. ],
  12. 'depends': ['point_of_sale'],
  13. 'installable': True,
  14. 'license': 'LGPL-3',
  15. 'assets': {
  16. 'point_of_sale.assets': [
  17. 'pos_six/static/lib/six_timapi/timapi.js',
  18. 'pos_six/static/src/js/BalanceButton.js',
  19. 'pos_six/static/src/js/Chrome.js',
  20. 'pos_six/static/src/js/models.js',
  21. 'pos_six/static/src/js/payment_six.js',
  22. 'pos_six/static/src/xml/**/*',
  23. ],
  24. }
  25. }