forked from Mapan/odoo17e
22 lines
573 B
Python
22 lines
573 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Documents - Project - Sale',
|
|
'version': '1.0',
|
|
'category': 'Productivity/Documents',
|
|
'summary': 'Products Workspace Templates',
|
|
'description': """
|
|
Adds the ability to set workspace templates on products.
|
|
""",
|
|
'depends': ['documents_project', 'sale_project'],
|
|
'data': [
|
|
'views/product_views.xml',
|
|
],
|
|
'demo': [
|
|
'data/documents_demo.xml',
|
|
'data/project_sale_demo.xml',
|
|
],
|
|
'auto_install': True,
|
|
'license': 'OEEL-1',
|
|
}
|