I would like to implement a module which forces load of others.
Is it ok to use an __openerp__.py whith the right dependences and an empty __init__.py?
I have tried an empty __init__.py and the following __openerp__.py:
{
'name': 'Base Module'
'description': 'Forces Installation of base modules'
'author': 'E.M.',
'depends': ['account_accountant', 'sale', 'stock', 'purchase', 'calendar', 'contacts', 'document'],
}
But module does not appear in the list despite the path is added and the server has been restarted.
I tried the same as your trial with no success, hope anyone offers help