[FIX]account_financial_report_webkit: pep8
parent
8e76fe6e61
commit
78bb7af017
|
@ -296,11 +296,14 @@ class CommonBalanceReportHeaderWebkit(CommonReportHeaderWebkit):
|
|||
elif account.type == 'view':
|
||||
to_display_accounts.update(
|
||||
dict([(a.id, True) for a in account.child_id]))
|
||||
debit_accounts['account_id'] = accounts_by_ids[account.id]['debit']
|
||||
credit_accounts['account_id'] = accounts_by_ids[account.id]['credit']
|
||||
balance_accounts['account_id'] = accounts_by_ids[account.id]['balance']
|
||||
init_balance_accounts[account.id] = accounts_by_ids[
|
||||
account.id].get('init_balance', 0.0)
|
||||
debit_accounts['account_id'] = \
|
||||
accounts_by_ids[account.id]['debit']
|
||||
credit_accounts['account_id'] = \
|
||||
accounts_by_ids[account.id]['credit']
|
||||
balance_accounts['account_id'] = \
|
||||
accounts_by_ids[account.id]['balance']
|
||||
init_balance_accounts[account.id] = \
|
||||
accounts_by_ids[account.id].get('init_balance', 0.0)
|
||||
|
||||
# if any amount is != 0 in comparisons, we have to display the
|
||||
# whole account
|
||||
|
|
Loading…
Reference in New Issue