Skip to content

Commit

Permalink
fix: Show accounts in financial statements upto level 20 (#23718)
Browse files Browse the repository at this point in the history
  • Loading branch information
nabinhait authored Oct 24, 2020
1 parent 8be296b commit ba1cca6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erpnext/accounts/report/financial_statements.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def get_accounts(company, root_type):
where company=%s and root_type=%s order by lft""", (company, root_type), as_dict=True)


def filter_accounts(accounts, depth=10):
def filter_accounts(accounts, depth=20):
parent_children_map = {}
accounts_by_name = {}
for d in accounts:
Expand Down

0 comments on commit ba1cca6

Please sign in to comment.