← Back to team overview

c2c-oerpscenario team mailing list archive

[Bug 582243] Re: account and account_financial_report - wrong selection condition on balance report

 

** Branch linked: lp:~openerp-dev/openobject-addons/trunk-dev-addons3

-- 
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to the OpenERP Project Group.
https://bugs.launchpad.net/bugs/582243

Title:
  account and account_financial_report - wrong selection condition on balance report

Status in OpenObject Addons Modules:
  Fix Released

Bug description:
  this line  in "account_balance.py"
>      if res['credit'] > 0 or res['debit'] > 0 or res['balance'] > 0 :
should read 
>      if res['credit'] > 0 or res['debit'] > 0 or res['balance'] <> 0 :