[MIG] Make modules uninstallable

This commit is contained in:
Pedro M. Baeza
2015-10-14 02:19:40 +02:00
parent 50892c95ee
commit 1df2087f32
9 changed files with 9 additions and 9 deletions

View File

@@ -16,5 +16,5 @@
'demo/partner_bank.xml', 'demo/partner_bank.xml',
], ],
'auto_install': False, 'auto_install': False,
'installable': True, 'installable': False,
} }

View File

@@ -30,5 +30,5 @@
'demo': [ 'demo': [
'demo/demo_data.xml', 'demo/demo_data.xml',
], ],
'installable': True, 'installable': False,
} }

View File

@@ -27,5 +27,5 @@
'depends': [ 'depends': [
'account_bank_statement_import', 'account_bank_statement_import',
], ],
'installable': True 'installable': False
} }

View File

@@ -30,5 +30,5 @@
'demo': [ 'demo': [
'demo/demo_data.xml', 'demo/demo_data.xml',
], ],
'installable': True 'installable': False
} }

View File

@@ -27,6 +27,6 @@
'account_bank_statement_import_mt940_base' 'account_bank_statement_import_mt940_base'
], ],
'auto_install': False, 'auto_install': False,
'installable': True, 'installable': False,
'application': False, 'application': False,
} }

View File

@@ -16,5 +16,5 @@
'python': ['ofxparse'], 'python': ['ofxparse'],
}, },
'auto_install': False, 'auto_install': False,
'installable': True, 'installable': False,
} }

View File

@@ -12,5 +12,5 @@
'account_bank_statement_import' 'account_bank_statement_import'
], ],
'auto_install': False, 'auto_install': False,
'installable': True, 'installable': False,
} }

View File

@@ -37,7 +37,7 @@
], ],
"post_init_hook": '_post_init_hook', "post_init_hook": '_post_init_hook',
"auto_install": False, "auto_install": False,
"installable": True, 'installable': False,
"application": False, "application": False,
"external_dependencies": { "external_dependencies": {
'python': [], 'python': [],

View File

@@ -29,5 +29,5 @@
], ],
"post_init_hook": "post_init_hook", "post_init_hook": "post_init_hook",
"auto_install": False, "auto_install": False,
"installable": True, 'installable': False,
} }