about 9 years ago
If you want Edit __openerp__.py in OpenERP(Odoo) follow the below mentioned steps: -
Step-1 Go to given module and click it.
Step-2 You will find four files mentioned below.
(i)-__openerp__.py
(ii)- __init__.py
(iii)- _python.py
(iv)-_views.xml
Step-3 After that we have select __openerp__.py file and edit it dependency like given below.
- {
- "name" : "Academy", (Academy = Module name)
- "version" : "1.0",
- "author" : "Evontech",
- (organization name)
- "category" : "academy",
- "depends" : ['base' ,'purchase','sale',],
- "update_xml" : ["security/academy_security.xml","security/ir.model.access.csv","academy.xml","academy_workflow.xml"],
- "installable" : True,
- }
{ "name" : "Academy", (Academy = Module name) "version" : "1.0", "author" : "Evontech", (organization name) "category" : "academy", "depends" : ['base' ,'purchase','sale',], "update_xml" : ["security/academy_security.xml","security/ir.model.access.csv","academy.xml","academy_workflow.xml"], "installable" : True, }
0 Comment(s)