commit | bd3fc7c4342195ce22cd860cba83e287aaac15b5 | [log] [tgz] |
---|---|---|
author | Corentin Flr <10946971+cogk@users.noreply.github.com> | Tue Aug 01 14:35:11 2023 +0200 |
committer | GitHub <noreply@github.com> | Tue Aug 01 14:35:11 2023 +0200 |
tree | 436e2552e774840ab44ea7327243cda1256e8e59 | |
parent | ab933df5bbce6aa576b0762a221933734bb5f719 [diff] |
fix: Fix query for 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 7c2ebe1..f1e665a 100644 --- a/erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py +++ b/erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py
@@ -654,7 +654,7 @@ & (gle.posting_date <= to_date) & (account.lft >= root_lft) & (account.rgt <= root_rgt) - & (account.root_type <= root_type) + & (account.root_type == root_type) ) .orderby(gle.account, gle.posting_date) )