Files
schuetz3-erpnext/erpnext/patches/v13_0/enable_uoms.py
Ankush Menat c07713b860 style: bulk format code with black
v13 port because otherwise backports will result in conflicts always
2022-03-29 17:29:34 +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()