c2c-oerpscenario team mailing list archive
-
c2c-oerpscenario team
-
Mailing list archive
-
Message #03380
[Bug 656378] Re: [trunk] general ledger -
i do not understand the problem depicted in this bug report. Is it only
a matter of choosing wich accounts to show in the general ledger when we
select the option 'with balance <> 0' ?
--
[trunk] general ledger -
https://bugs.launchpad.net/bugs/656378
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: Incomplete
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)