X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=addons%2Faccount%2Finstaller.py;fp=addons%2Faccount%2Finstaller.py;h=f0111d6645aa6b65e04876f3eb1d8c8d7030ca56;hb=35446546d348033b8e89370c436d55276db73d5e;hp=ad48da00b0ffb6e84e51407ec0b04a4f69f67bfb;hpb=a22726ffe646e95fed549361e2efa663fdae14e4;p=odoo%2Fodoo.git diff --git a/addons/account/installer.py b/addons/account/installer.py index ad48da0..f0111d6 100644 --- a/addons/account/installer.py +++ b/addons/account/installer.py @@ -86,8 +86,7 @@ class account_installer(osv.osv_memory): company_ids = self.pool.get('res.company').search(cr, uid, [], context=context) cr.execute("SELECT company_id FROM account_account WHERE active = 't' AND account_account.parent_id IS NULL AND name != %s", ("Chart For Automated Tests",)) configured_cmp = [r[0] for r in cr.fetchall()] - unconfigured_cmp = list(set(company_ids)-set(configured_cmp)) - return unconfigured_cmp + return list(set(company_ids)-set(configured_cmp)) def check_unconfigured_cmp(self, cr, uid, context=None): """ check if there are still unconfigured companies """