- /testserver_o2b/__manifest__.py - /testserver_o2b/security/ir.model.access.csv
27 lines
635 B
Python
27 lines
635 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "testserver_o2b",
|
|
|
|
'summary': """
|
|
Short (1 phrase/line) summary of the module's purpose, used as
|
|
subtitle on modules listing or apps.openerp.com""",
|
|
|
|
'description': """
|
|
Long description of module's purpose
|
|
""",
|
|
|
|
'author': "Open2bizz",
|
|
'website': "https://open2bizz.tech",
|
|
'category': 'Uncategorized',
|
|
'version': '0.1',
|
|
'depends': ['web_environment_ribbon', 'mail','base',],
|
|
'data': [
|
|
'views/views.xml',
|
|
'views/templates.xml',
|
|
'security/ir.model.access.csv',
|
|
],
|
|
'demo': [
|
|
'demo/demo.xml',
|
|
],
|
|
}
|