Browse Source

[FIX] account_financial_report_webkit: Don't overpass top level account

With current code, the top level accounts (the 0 one) is ignored in
the population of debit, credit and balance data, provoking that the
report shows a line with all 0's, which leads to confussion to users.

I see no reason for zeroing this data, as it can be significant for
certain account charts, and can be easily ignored for those who not.
pull/162/head
Pedro M. Baeza 8 years ago
parent
commit
5ed587030b
  1. 2
      account_financial_report_webkit/report/common_balance_reports.py

2
account_financial_report_webkit/report/common_balance_reports.py

@ -288,8 +288,6 @@ class CommonBalanceReportHeaderWebkit(CommonReportHeaderWebkit):
balance_accounts = dict.fromkeys(account_ids, False)
for account in objects:
if not account.parent_id: # hide top level account
continue
if account.type == 'consolidation':
to_display_accounts.update(
dict([(a.id, False) for a in account.child_consol_ids]))

Loading…
Cancel
Save