32 lines
787 B
Python
32 lines
787 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': "Sale Product Configurator",
|
|
'version': '1.0',
|
|
'category': 'Hidden',
|
|
'summary': "Configure your products",
|
|
|
|
'description': """
|
|
Technical module:
|
|
The main purpose is to override the sale_order view to allow configuring products in the SO form.
|
|
|
|
It also enables the "optional products" feature.
|
|
""",
|
|
|
|
'depends': ['sale'],
|
|
'data': [
|
|
'views/product_template_views.xml',
|
|
'views/sale_order_views.xml',
|
|
],
|
|
'demo': [
|
|
'data/sale_demo.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'sale_product_configurator/static/src/**/*',
|
|
],
|
|
},
|
|
'auto_install': True,
|
|
'license': 'LGPL-3',
|
|
}
|