The __openerp__.py file has containing list of dependencies,conditioning startup order,data files to load at module install,always load groups first and load access rights after groups.
For example code below.
{'name' : 'SHIVA',
'version' : '1.0',
'author' : 'OpenERP',
'description' : 'Ideas management module',
'category': 'Enterprise Innovation',
'website': 'http://www.openerp.com',
'depends' : ['base'], # list of dependencies, conditioning startup order
'data' : [
# data files to load at module install
'security/groups.xml',
# always load groups first!
'security/ir.model.access.csv', # load access rights after groups
'workflow/workflow.xml',
'view/views.xml',
'wizard/wizard.xml',
'report/report.xml',
],
0 Comment(s)