From 17bc92d437fbc1bf59fb812657a1caac59553677 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 14 Oct 2015 02:24:44 +0200 Subject: [PATCH] [MIG] Make modules uninstallable --- contract_discount/__openerp__.py | 2 +- contract_journal/__openerp__.py | 2 +- contract_show_invoice/__openerp__.py | 2 +- contract_show_recurring_invoice/__openerp__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/contract_discount/__openerp__.py b/contract_discount/__openerp__.py index 1e8d2496..24ac160d 100644 --- a/contract_discount/__openerp__.py +++ b/contract_discount/__openerp__.py @@ -33,6 +33,6 @@ 'views/contract_view.xml', ], 'test': ['test/contract_discount.yml'], - 'installable': True, + 'installable': False, 'auto_install': False, } diff --git a/contract_journal/__openerp__.py b/contract_journal/__openerp__.py index 6efc32df..fba51ae9 100644 --- a/contract_journal/__openerp__.py +++ b/contract_journal/__openerp__.py @@ -33,6 +33,6 @@ 'views/contract_view.xml', ], 'test': ['test/contract_journal.yml'], - 'installable': True, + 'installable': False, 'auto_install': False, } diff --git a/contract_show_invoice/__openerp__.py b/contract_show_invoice/__openerp__.py index f7f773c4..22db7e3c 100644 --- a/contract_show_invoice/__openerp__.py +++ b/contract_show_invoice/__openerp__.py @@ -33,6 +33,6 @@ 'test': [ 'test/contract_show_invoice_test.yml' ], - 'installable': True, + 'installable': False, 'auto_install': False, } diff --git a/contract_show_recurring_invoice/__openerp__.py b/contract_show_recurring_invoice/__openerp__.py index 5c9d5afe..d887d25b 100644 --- a/contract_show_recurring_invoice/__openerp__.py +++ b/contract_show_recurring_invoice/__openerp__.py @@ -35,6 +35,6 @@ 'test/contract_show_recurring_invoice_test.yml' ], "post_init_hook": "copy_recurring_invoice", - 'installable': True, + 'installable': False, 'auto_install': False, }