769eafb483
Flectra is Forked from Odoo v11 commit : (6135e82d73
)
21 lines
539 B
Python
21 lines
539 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Website Sale Stock - Website Delivery Information',
|
|
'category': 'Website',
|
|
'description': """
|
|
Display delivery orders (picking) infos on the website
|
|
""",
|
|
'depends': [
|
|
'website_sale',
|
|
'sale_stock',
|
|
],
|
|
'auto_install': True,
|
|
'data': [
|
|
'views/product_template_views.xml',
|
|
'views/res_config_settings_views.xml',
|
|
'views/website_sale_stock_templates.xml'
|
|
]
|
|
}
|