c2c-oerpscenario team mailing list archive
-
c2c-oerpscenario team
-
Mailing list archive
-
Message #04592
[Bug 582243] Re: account and account_financial_report - wrong selection condition on balance report
in V6 of today still wrong
account_balance_sheet.py: if account.credit > 0 or account.debit > 0 or account.balance > 0:
account_profit_loss.py: if account.credit > 0 or account.debit > 0 or account.balance > 0:
--
account and account_financial_report - wrong selection condition on balance report
https://bugs.launchpad.net/bugs/582243
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to the OpenERP Project Group.
Status in OpenObject Addons Modules: Confirmed
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 :