1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': "Sale Matrix",
'summary': "Add variants to Sales Order through a grid entry.",
'description': """
This module allows to fill Sales Order rapidly
by choosing product variants quantity through a Grid Entry.
""",
'category': 'Sales/Sales',
'version': '1.0',
'depends': ['sale', 'product_matrix', 'sale_product_configurator'],
'data': [
'views/assets.xml',
'views/product_template_views.xml',
'views/sale_views.xml',
'report/sale_report_templates.xml',
],
'demo': [
'data/product_matrix_demo.xml'
],
'license': 'LGPL-3',
}
|