fix: Update only if loans to close

This commit is contained in:
Deepesh Garg 2020-11-12 18:47:34 +05:30
parent c51b340ddf
commit 78690af440

View File

@ -29,7 +29,8 @@ def execute():
loans_to_close = [d.parent for d in loans_list]
frappe.db.sql("UPDATE `tabLoan` set status = 'Closed' where name not in (%s)" % (', '.join(['%s'] * len(loans_to_close))), tuple(loans_to_close))
if loans_to_close:
frappe.db.sql("UPDATE `tabLoan` set status = 'Closed' where name not in (%s)" % (', '.join(['%s'] * len(loans_to_close))), tuple(loans_to_close))
loans = frappe.get_all('Loan', fields=['name', 'loan_type', 'company', 'status', 'mode_of_payment',
'applicant_type', 'applicant', 'loan_account', 'payment_account', 'interest_income_account'],