1
In an Odoo module, there is a section on __manifest__.py
, where it indicates which are the dependencies.
__manifest__.py
...
'depends': ['base', 'mrp'],
...
With I access the resources of mrp from my module?
1
In an Odoo module, there is a section on __manifest__.py
, where it indicates which are the dependencies.
__manifest__.py
...
'depends': ['base', 'mrp'],
...
With I access the resources of mrp from my module?
Browser other questions tagged python-3.x
You are not signed in. Login or sign up in order to post.