[FIX] Multi-Company Environment :Configuration of consolidated type of account is not possible due to the _check_type constraints

lp bug: https://launchpad.net/bugs/715695 fixed

bzr revid: ara@tinyerp.com-20110209120535-o3htlw38zves04fm
This commit is contained in:
ARA (OpenERP) 2011-02-09 17:35:35 +05:30
parent db892909f0
commit e0a95e80c1
1 changed files with 1 additions and 1 deletions

View File

@ -424,7 +424,7 @@ class account_account(osv.osv):
context = {}
accounts = self.browse(cr, uid, ids, context=context)
for account in accounts:
if account.child_id and account.type != 'view':
if account.child_id and account.type not in ('view', 'consolidation'):
return False
return True