Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
3 Odgovori
5971 Prikazi

Hi,

I read, that it is possible, to use odoo with a couple of databases.

Is there a script or something, which installs in all databases per default the accounting and sales module?


Avatar
Opusti
Best Answer

 

Very good suggestion @Ray:

@Fabian you can do it following way:

In the __openerp__.py file, need to add 'auto_install': True as shown in the below example(it is from web_calendar module).

{
'name': 'Web Calendar',
'category': 'Hidden',
'description':"""
OpenERP Web Calendar view.
==========================
""",
'author': 'OpenERP SA, Valentino Lab (Kalysto)',
'version': '2.0',
'depends': ['web'],
'data' : [
'views/web_calendar.xml',
],
'qweb': [
'static/src/xml/*.xml',
],
'auto_install': True
}
Avatar
Opusti
Best Answer

Create a module that depends on the modules you want installed, you can even set your module to autoinstall so every new database you create will automatically have all the dependent modules installed.

Avatar
Opusti
Avtor

Oh that sounds great can you tell me how to set my module to autoinstall?

Feasible solution is auto_install in __openerp__.py file. @fabian you can see @Hardikgiri's Answer.

Related Posts Odgovori Prikazi Aktivnost
1
mar. 16
22238
3
maj 24
15112
0
mar. 17
3191
1
jun. 16
3424
2
jun. 16
3644