[FIX] Bug 359476 : Balance report corrected for bal != 0 (ref:ACH)

bzr revid: jvo@tinyerp.com-20090420065859-n6rp93x9i68uzlqd
This commit is contained in:
Jay (Open ERP) 2009-04-20 12:28:59 +05:30
parent d841cce003
commit 3f49360d12
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ class account_balance(report_sxw.rml_parse):
if res['credit'] > 0 or res['debit'] > 0 or res['balance'] > 0 :
result_acc.append(res)
elif form['display_account'] == 'bal_solde':
if res['balance'] > 0:
if res['balance'] != 0:
result_acc.append(res)
else:
result_acc.append(res)