mirror of
https://github.com/frappe/erpnext.git
synced 2026-09-17 18:45:20 +00:00
fix: concflicts
This commit is contained in:
@@ -3,7 +3,7 @@ import frappe
|
||||
from erpnext.stock.utils import get_bin
|
||||
|
||||
|
||||
def execute(self):
|
||||
def execute():
|
||||
|
||||
wo = frappe.qb.DocType("Work Order")
|
||||
wo_item = frappe.qb.DocType("Work Order Item")
|
||||
@@ -18,7 +18,7 @@ def execute(self):
|
||||
& (wo.docstatus == 1)
|
||||
& (wo.source_warehouse.notnull())
|
||||
)
|
||||
).run(debug=True)
|
||||
).run()
|
||||
|
||||
for item_code, warehouse in incorrect_item_wh:
|
||||
if not (item_code and warehouse):
|
||||
|
||||
Reference in New Issue
Block a user