mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-01 19:29:10 +00:00
12 lines
187 B
Python
12 lines
187 B
Python
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()
|