23 lines
635 B
Python
23 lines
635 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
|
||
|
{
|
||
|
'name': 'POS - Sale Product Configurator',
|
||
|
'version': '1.0',
|
||
|
'category': 'Hidden',
|
||
|
'summary': 'Link module between point_of_sale and sale_product_configurator',
|
||
|
'description': """
|
||
|
This module adds features depending on both modules.
|
||
|
""",
|
||
|
'depends': ['point_of_sale', 'sale_product_configurator'],
|
||
|
'installable': True,
|
||
|
'auto_install': True,
|
||
|
'assets': {
|
||
|
'point_of_sale._assets_pos': [
|
||
|
'pos_sale_product_configurator/static/src/**/*',
|
||
|
]
|
||
|
},
|
||
|
'license': 'LGPL-3',
|
||
|
}
|