[FIX]base:fix the issue of KeyError when changes in line of Journal Entry

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

bzr revid: mma@tinyerp.com-20120619062426-x5ykv2thycvpvs4l
This commit is contained in:
Mayur Maheshwari (OpenERP) 2012-06-19 11:54:26 +05:30
parent c9c27a2432
commit 344ddfbdd5
1 changed files with 1 additions and 1 deletions

View File

@ -1363,7 +1363,7 @@ class account_move(osv.osv):
balance = 0.0
for line in line_ids:
if line[2]:
balance += (line[2]['debit'] or 0.00)- (line[2]['credit'] or 0.00)
balance += (line[2].get('debit',0.00)- (line[2].get('credit',0.00)))
return {'value': {'balance': balance}}
def write(self, cr, uid, ids, vals, context=None):