← Back to team overview

c2c-oerpscenario team mailing list archive

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

 

** Changed in: openobject-addons
   Importance: Undecided => Low

** Changed in: openobject-addons
       Status: Incomplete => Confirmed

-- 
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:
  Confirmed

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)