fix(patch): skip leave ledger entry creation for denied leaves (#19579)

This commit is contained in:
Deepesh Garg 2019-11-14 13:05:13 +05:30 committed by Nabin Hait
parent fc3b924d4d
commit d69d0e3046

View File

@ -19,8 +19,10 @@ def get_denied_leave_application_list():
return frappe.db.sql_list(''' Select name from `tabLeave Application` where status <> 'Approved' ''')
def delete_denied_leaves_from_leave_ledger_entry(leave_application_list):
frappe.db.sql(''' Delete
FROM `tabLeave Ledger Entry`
WHERE
transaction_type = 'Leave Application'
AND transaction_name in {0} '''.format(tuple(leave_application_list))) #nosec
if leave_application_list:
frappe.db.sql(''' Delete
FROM `tabLeave Ledger Entry`
WHERE
transaction_type = 'Leave Application'
AND transaction_name in (%s) ''' % (', '.join(['%s'] * len(leave_application_list))), #nosec
tuple(leave_application_list))