__manifest__.py 604 B

123456789101112131415161718192021222324
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'pos_sale_loyalty',
  5. 'version': '1.0',
  6. 'category': 'Hidden',
  7. 'sequence': 6,
  8. 'summary': 'Link module between pos_sale and pos_loyalty',
  9. 'description': """
  10. This module correct some behaviors when both module are installed.
  11. """,
  12. 'depends': ['pos_sale', 'pos_loyalty'],
  13. 'installable': True,
  14. 'auto_install': True,
  15. 'assets': {
  16. 'point_of_sale.assets': [
  17. 'pos_sale_loyalty/static/src/js/**/*.js',
  18. ],
  19. },
  20. 'license': 'LGPL-3',
  21. }