I have created a startup project myapp_main
for all my Odoo projects.
Whenever I install this main project; Odoo installs all depends
modules (x, y, z)
Here's manifest.py file:
# -*- coding: utf-8 -*-
{
'name': 'myapp_main',
'version': '1.0',
'summary': 'MyApp main project',
'depends': ['x',
'y',
'z'
],
'demo': [],
'installable': True,
'auto_install': False,
'application': True,
}
This approach works fine for fresh installation but doesn't work when we are upgrading. I expect that all dependent modules should also get auto-upgraded whenever I upgrade the main project.
Has anyone achieved this? Any ideas please.