diff options
Diffstat (limited to 'addons/product_matrix/__manifest__.py')
| -rw-r--r-- | addons/product_matrix/__manifest__.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/addons/product_matrix/__manifest__.py b/addons/product_matrix/__manifest__.py new file mode 100644 index 00000000..0be70828 --- /dev/null +++ b/addons/product_matrix/__manifest__.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +{ + 'name': "Product Matrix", + 'summary': """ + Technical module: Matrix Implementation + """, + 'description': """ +Please refer to Sale Matrix or Purchase Matrix for the use of this module. + """, + 'category': 'Sales/Sales', + 'version': '1.0', + 'depends': ['account'], + # Account dependency for section_and_note widget. + 'qweb': [ + "static/src/xml/product_matrix.xml", + ], + 'data': [ + 'views/assets.xml', + 'views/matrix_templates.xml', + ], + 'demo': [ + 'data/product_matrix_demo.xml', + ], + 'license': 'LGPL-3', +} |
