2022-01-11 11:52:40 +00:00
|
|
|
import frappe
|
|
|
|
|
|
|
|
|
|
|
|
def execute():
|
2022-03-28 13:22:46 +00:00
|
|
|
frappe.reload_doc("setup", "doctype", "uom")
|
2022-01-11 11:52:40 +00:00
|
|
|
|
|
|
|
uom = frappe.qb.DocType("UOM")
|
|
|
|
|
2022-03-28 13:22:46 +00:00
|
|
|
(
|
|
|
|
frappe.qb.update(uom)
|
2022-01-11 11:52:40 +00:00
|
|
|
.set(uom.enabled, 1)
|
|
|
|
.where(uom.creation >= "2021-10-18") # date when this field was released
|
|
|
|
).run()
|