[MIG] Make modules uninstallable

This commit is contained in:
Pedro M. Baeza
2016-10-06 16:06:44 +02:00
parent 9bd180c2ed
commit 848e1358fd
2 changed files with 5 additions and 2 deletions

View File

@@ -10,7 +10,7 @@
"website": "https://odoo-community.org/", "website": "https://odoo-community.org/",
"license": "AGPL-3", "license": "AGPL-3",
"application": False, "application": False,
"installable": True, 'installable': False,
'data': [ 'data': [
'views/layouts.xml', 'views/layouts.xml',
], ],

View File

@@ -12,8 +12,11 @@
'category': 'Reporting', 'category': 'Reporting',
'version': '9.0.1.0.0', 'version': '9.0.1.0.0',
'license': 'AGPL-3', 'license': 'AGPL-3',
'external_dependencies': {'python': ['xlsxwriter']}, 'external_dependencies': {'python': ['xlsxwriter'],
'installable': False,
},
'depends': [ 'depends': [
'base', 'base',
], ],
'installable': False,
} }