brotherton-erpnext/erpnext/patches/v13_0/update_shipment_status.py
2022-03-28 18:52:46 +05:30

20 lines
386 B
Python

import frappe
def execute():
frappe.reload_doc("stock", "doctype", "shipment")
# update submitted status
frappe.db.sql(
"""UPDATE `tabShipment`
SET status = "Submitted"
WHERE status = "Draft" AND docstatus = 1"""
)
# update cancelled status
frappe.db.sql(
"""UPDATE `tabShipment`
SET status = "Cancelled"
WHERE status = "Draft" AND docstatus = 2"""
)