Browse Source

Merge pull request #28959 from deepeshgarg007/consolidated_balance_return_fix

fix: Error on viewing consolidated financial statement
develop
Deepesh Garg 3 years ago
committed by GitHub
parent
commit
c5c7777bd5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py

2
erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py

@ -370,7 +370,7 @@ def get_account_heads(root_type, companies, filters):
accounts = get_accounts(root_type, filters) accounts = get_accounts(root_type, filters)
if not accounts: if not accounts:
return None, None return None, None, None
accounts = update_parent_account_names(accounts) accounts = update_parent_account_names(accounts)

Loading…
Cancel
Save