__manifest__.py 777 B

1234567891011121314151617181920212223242526272829
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': "Product Matrix",
  5. 'summary': """
  6. Technical module: Matrix Implementation
  7. """,
  8. 'description': """
  9. Please refer to Sale Matrix or Purchase Matrix for the use of this module.
  10. """,
  11. 'category': 'Sales/Sales',
  12. 'version': '1.0',
  13. 'depends': ['account'],
  14. # Account dependency for section_and_note widget.
  15. 'data': [
  16. 'views/matrix_templates.xml',
  17. ],
  18. 'demo': [
  19. 'data/product_matrix_demo.xml',
  20. ],
  21. 'assets': {
  22. 'web.assets_backend': [
  23. 'product_matrix/static/src/scss/product_matrix.scss',
  24. 'product_matrix/static/src/xml/**/*',
  25. ],
  26. },
  27. 'license': 'LGPL-3',
  28. }