34 lines
716 B
Python
Executable File
34 lines
716 B
Python
Executable File
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "SOS Marketing",
|
|
|
|
'summary': "Marketing",
|
|
|
|
'description': """
|
|
Long description of module's purpose
|
|
""",
|
|
|
|
'author': "Deena",
|
|
'website': "https://sosaley.com",
|
|
|
|
'category': 'Inventory',
|
|
'version': '17.0.1.0.0',
|
|
# any module necessary for this one to work correctly
|
|
'depends': ['base','web','mail','sos_inventory','sos_sales'],
|
|
|
|
# always loaded
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'views/menu.xml',
|
|
'views/sos_marketing_leads_view.xml'
|
|
],
|
|
# only loaded in demonstration mode
|
|
'demo': [
|
|
'demo/demo.xml',
|
|
],
|
|
'installable': True,
|
|
'application': True,
|
|
'license': 'LGPL-3'
|
|
}
|
|
|