c2c-oerpscenario team mailing list archive
-
c2c-oerpscenario team
-
Mailing list archive
-
Message #10644
[Bug 656378] Re: [trunk] general ledger -
** Changed in: openobject-addons
Status: Confirmed => In Progress
--
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/656378
Title:
[trunk] general ledger -
Status in OpenObject Addons Modules:
In Progress
Bug description:
account_general_ledger.py
elif self.display_account == 'bal_solde':
if child_account.type != 'view' and num_entry <> 0 :
if ( sold_account <> 0.0):
res.append(child_account)
for accountants it is important to only exclude accounts which have all values of a line != 0
meaning
do not print account if
* sold_account = 0 AND debit = 0 AND credit = 0 AND INITIAL/OPENING = 0
(did not investigate the field names )
it would also reduce a lot of output if
"With all values is not equal to 0"
is set to default (I know this can be done using RMB but requires unnecessary user/admin/partner interaction)