In an Odoo module, there is a section in __manifest__.py
, which indicates the dependencies.
__ manifest __. py
...
'depends': ['base', 'mrp'],
...
How do I access the mrp resources from my module?
In an Odoo module, there is a section in __manifest__.py
, which indicates the dependencies.
__ manifest __. py
...
'depends': ['base', 'mrp'],
...
How do I access the mrp resources from my module?