← Back to team overview

c2c-oerpscenario team mailing list archive

[Bug 656378] Re: [trunk] general ledger -

 

hello Ferdinand,

I have fixed the problem in lp:~openerp-dev/openobject-addons/trunk-dev-
addons3-ara branch, It will be merged soon with trunk-dev-addons3.

Revision No: 4617
Revision ID: ara@xxxxxxxxxxx-20110104055112-wnqayojs4db8igmr

Thank you,
ara

** Changed in: openobject-addons
       Status: In Progress => Fix Committed

-- 
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:
  Fix Committed

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)