forked from Mapan/odoo17e
32 lines
944 B
Python
32 lines
944 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'eCommerce Subscription',
|
|
'category': 'Hidden',
|
|
'summary': 'Sell subscription products on your eCommerce',
|
|
'version': '1.0',
|
|
'description': """
|
|
This module allows you to sell subscription products in your eCommerce with
|
|
appropriate views and selling choices.
|
|
""",
|
|
'depends': ['website_sale', 'sale_subscription'],
|
|
'data': [
|
|
'views/templates.xml',
|
|
'views/sale_order_views.xml',
|
|
],
|
|
'demo': [
|
|
'data/demo.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_frontend': [
|
|
('before', 'website_sale/static/src/js/website_sale.js', 'website_sale_subscription/static/src/js/variant_mixin.js'),
|
|
],
|
|
'web.assets_tests': [
|
|
'website_sale_subscription/static/tests/tours/**/*',
|
|
],
|
|
},
|
|
'auto_install': True,
|
|
'license': 'OEEL-1',
|
|
}
|