From fa68c5447797bc04abff2771060f210b251d92e7 Mon Sep 17 00:00:00 2001 From: Joren Van Onder Date: Thu, 10 Dec 2015 09:26:59 +0100 Subject: [PATCH] [IMP] runbot: blacklist a couple of POS related modules - pos_blackbox_be: because it makes the POS unuseable without a blackbox - pos_cache: because it's too confusing for runbot users, everytime they update a product they have to also update the cache, but most people don't realise that. --- runbot/runbot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runbot/runbot.py b/runbot/runbot.py index 4b4c2596..d261cc0e 100644 --- a/runbot/runbot.py +++ b/runbot/runbot.py @@ -706,7 +706,8 @@ class runbot_build(osv.osv): def filter_modules(self, cr, uid, modules, available_modules, explicit_modules): blacklist_modules = set(['auth_ldap', 'document_ftp', 'base_gengo', - 'website_gengo', 'website_instantclick']) + 'website_gengo', 'website_instantclick', + 'pos_cache', 'pos_blackbox_be']) mod_filter = lambda m: ( m in available_modules and