commit | ea0ef955397e5dae88497159a42f5bc8292d76c5 | [log] [tgz] |
---|---|---|
author | Rohit Waghchaure <rohitw1991@gmail.com> | Fri Sep 28 17:05:55 2018 +0530 |
committer | Rohit Waghchaure <rohitw1991@gmail.com> | Fri Sep 28 17:05:55 2018 +0530 |
tree | 5de59c89c2cd535984062d16e49fff8d7187629a | |
parent | 183972f58f66ce7c3dac489595f524e31bfaa26a [diff] |
[Fix] Consolidated Financial Statement report
diff --git a/erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py b/erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py index b6d4875..2d13469 100644 --- a/erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py +++ b/erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py
@@ -238,6 +238,9 @@ for d in reversed(accounts): if d.parent_account: account = d.parent_account.split('-')[0].strip() + if not accounts_by_name.get(account): + continue + for company in companies: accounts_by_name[account][company] = \ accounts_by_name[account].get(company, 0.0) + d.get(company, 0.0)