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

14 lines
246 B
Python

import frappe
def execute():
frappe.reload_doc("setup", "doctype", "uom")
uom = frappe.qb.DocType("UOM")
(
frappe.qb.update(uom)
.set(uom.enabled, 1)
.where(uom.creation >= "2021-10-18") # date when this field was released
).run()