49 lines
1.3 KiB
Python
49 lines
1.3 KiB
Python
|
|
{
|
||
|
|
'name': "custom_subscriptions",
|
||
|
|
|
||
|
|
'summary': "Short (1 phrase/line) summary of the module's purpose",
|
||
|
|
|
||
|
|
'description': """
|
||
|
|
Long description of module's purpose
|
||
|
|
""",
|
||
|
|
|
||
|
|
'author': "My Company",
|
||
|
|
'website': "https://www.yourcompany.com",
|
||
|
|
|
||
|
|
# Categories can be used to filter modules in modules listing
|
||
|
|
# Check https://github.com/odoo/odoo/blob/15.0/odoo/addons/base/data/ir_module_category_data.xml
|
||
|
|
# for the full list
|
||
|
|
'category': 'Uncategorized',
|
||
|
|
'version': '0.1',
|
||
|
|
|
||
|
|
# any module necessary for this one to work correctly
|
||
|
|
'depends': ['base',
|
||
|
|
'sale',
|
||
|
|
'account',
|
||
|
|
'product',],
|
||
|
|
|
||
|
|
# always loaded
|
||
|
|
'data': [
|
||
|
|
'security/ir.model.access.csv',
|
||
|
|
'data/sequence_data.xml',
|
||
|
|
'data/cron_data.xml',
|
||
|
|
'views/subscription_views.xml',
|
||
|
|
'views/menu_views.xml',
|
||
|
|
],
|
||
|
|
# only loaded in demonstration mode
|
||
|
|
'demo': [
|
||
|
|
'demo/demo.xml',
|
||
|
|
],
|
||
|
|
# 'assets': {
|
||
|
|
# 'web.assets_backend': [
|
||
|
|
# 'custom_subscriptions/static/src/scss/app_selector.scss',
|
||
|
|
# 'custom_subscriptions/static/src/js/app_selector.js',
|
||
|
|
# 'custom_subscriptions/static/src/xml/app_selector.xml',
|
||
|
|
# ],
|
||
|
|
# },
|
||
|
|
'installable': True,
|
||
|
|
'application': True,
|
||
|
|
'auto_install': False,
|
||
|
|
}
|
||
|
|
|