fix: concflicts

This commit is contained in:
Ankush Menat
2022-02-09 11:53:14 +05:30
parent 0ac16f9e63
commit 94fc5f95db
3 changed files with 2 additions and 52 deletions

View File

@@ -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):