brotherton-erpnext/erpnext/patches/v13_0/update_sane_transfer_against.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
187 B
Python
Raw Normal View History

import frappe
def execute():
bom = frappe.qb.DocType("BOM")
(
frappe.qb.update(bom)
.set(bom.transfer_material_against, "Work Order")
.where(bom.with_operations == 0)
).run()