commit | 4104887abb6a3a50a529831ad25d63aae081463a | [log] [tgz] |
---|---|---|
author | Deepesh Garg <deepeshgarg6@gmail.com> | Sun Aug 02 18:23:54 2020 +0530 |
committer | Deepesh Garg <deepeshgarg6@gmail.com> | Sun Aug 02 18:23:54 2020 +0530 |
tree | 31597924a9c7009353b6dc43d1ec8095f9957dab | |
parent | d909669a18c39098db734ad3b6b0a1c5b7789f74 [diff] |
fix: fieldname in filter
diff --git a/erpnext/loan_management/doctype/loan_security_shortfall/loan_security_shortfall.py b/erpnext/loan_management/doctype/loan_security_shortfall/loan_security_shortfall.py index aae68df..02efe24 100644 --- a/erpnext/loan_management/doctype/loan_security_shortfall/loan_security_shortfall.py +++ b/erpnext/loan_management/doctype/loan_security_shortfall/loan_security_shortfall.py
@@ -52,7 +52,7 @@ }, as_list=1)) loans = frappe.get_all('Loan', fields=['name', 'loan_amount', 'total_principal_paid'], - filters={'status': 'Disbursed', 'is_secured': 1}) + filters={'status': 'Disbursed', 'is_secured_loan': 1}) loan_security_map = {}