commit | b715453ae367779f6985e7c01d1d568d8d218cc9 | [log] [tgz] |
---|---|---|
author | Deepesh Garg <deepeshgarg6@gmail.com> | Tue Aug 01 23:36:25 2023 +0530 |
committer | GitHub <noreply@github.com> | Tue Aug 01 23:36:25 2023 +0530 |
tree | 27b57ed537d43cc4497eb6908756b7089bc5b8ad | |
parent | a8df875820daee7d87e4297445a756c875eb1e6d [diff] | |
parent | bd3fc7c4342195ce22cd860cba83e287aaac15b5 [diff] |
Merge pull request #36450 from cogk/fix-typo-in-query-for-financial-statement-report 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) )