brotherton-erpnext/erpnext/patches/v12_0/set_payment_entry_status.py
2021-08-19 13:43:28 +05:30

10 lines
234 B
Python

import frappe
def execute():
frappe.reload_doctype("Payment Entry")
frappe.db.sql("""update `tabPayment Entry` set status = CASE
WHEN docstatus = 1 THEN 'Submitted'
WHEN docstatus = 2 THEN 'Cancelled'
ELSE 'Draft'
END;""")