Merge pull request #162 from pedrobaeza/8.0-account_financial_report_webkit-top_level_account
[FIX] account_financial_report_webkit: Don't overpass top level accountpull/166/head
commit
6939163548
|
@ -288,8 +288,6 @@ class CommonBalanceReportHeaderWebkit(CommonReportHeaderWebkit):
|
||||||
balance_accounts = dict.fromkeys(account_ids, False)
|
balance_accounts = dict.fromkeys(account_ids, False)
|
||||||
|
|
||||||
for account in objects:
|
for account in objects:
|
||||||
if not account.parent_id: # hide top level account
|
|
||||||
continue
|
|
||||||
if account.type == 'consolidation':
|
if account.type == 'consolidation':
|
||||||
to_display_accounts.update(
|
to_display_accounts.update(
|
||||||
dict([(a.id, False) for a in account.child_consol_ids]))
|
dict([(a.id, False) for a in account.child_consol_ids]))
|
||||||
|
|
Loading…
Reference in New Issue