45 lines
1.5 KiB
Python
45 lines
1.5 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
{
|
||
|
'name': 'Product Availability',
|
||
|
'category': 'Website/Website',
|
||
|
'summary': 'Manage product inventory & availability',
|
||
|
'description': """
|
||
|
Manage the inventory of your products and display their availability status in your eCommerce store.
|
||
|
In case of stockout, you can decide to block further sales or to keep selling.
|
||
|
A default behavior can be selected in the Website settings.
|
||
|
Then it can be made specific at the product level.
|
||
|
""",
|
||
|
'depends': [
|
||
|
'website_sale',
|
||
|
'sale_stock',
|
||
|
'stock_delivery',
|
||
|
],
|
||
|
'data': [
|
||
|
'views/product_template_views.xml',
|
||
|
'views/res_config_settings_views.xml',
|
||
|
'views/website_sale_stock_templates.xml',
|
||
|
'views/stock_picking_views.xml',
|
||
|
'views/website_pages_views.xml',
|
||
|
'data/template_email.xml',
|
||
|
'data/ir_cron_data.xml',
|
||
|
],
|
||
|
'demo': [
|
||
|
'data/website_sale_stock_demo.xml',
|
||
|
],
|
||
|
'auto_install': True,
|
||
|
'assets': {
|
||
|
'web.assets_frontend': [
|
||
|
'website_sale_stock/static/src/js/**/*',
|
||
|
'website_sale_stock/static/src/xml/**/*',
|
||
|
],
|
||
|
'web.assets_tests': [
|
||
|
'website_sale_stock/static/tests/tours/website_sale_stock_multilang.js',
|
||
|
'website_sale_stock/static/tests/tours/website_sale_stock_stock_notification.js',
|
||
|
'website_sale_stock/static/tests/tours/website_sale_stock_message_after_close_configurator_modal.js'
|
||
|
],
|
||
|
},
|
||
|
'license': 'LGPL-3',
|
||
|
}
|