commit | 6b9f9f9b0e0a49ee15820c77ffe4de99605786ff | [log] [tgz] |
---|---|---|
author | Gursheen Anand <gursheen@frappe.io> | Tue Jun 27 21:59:35 2023 +0530 |
committer | Gursheen Anand <gursheen@frappe.io> | Tue Jun 27 21:59:35 2023 +0530 |
tree | add775b6d0c6e4147dfa352b8ee780c606aee35c | |
parent | 5d726ef0377dc1fadc9857cb4b39828dc731a709 [diff] |
fix: remove debug flag from sql
diff --git a/erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.py b/erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.py index cbe2549..5ab3611 100644 --- a/erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.py +++ b/erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.py
@@ -49,7 +49,7 @@ .groupby(gle.voucher_no) ) query = apply_filters(query, filters, gle) - gl_entries = query.run(as_dict=True, debug=True) + gl_entries = query.run(as_dict=True) unmatched = [entry for entry in gl_entries if entry.debit != entry.credit] return unmatched