fix patch
This commit is contained in:
parent
c95675c074
commit
9116666288
@ -10,6 +10,7 @@ def execute():
|
||||
items_barcode = frappe.db.sql("SELECT name, barcode FROM tabItem WHERE barcode IS NOT NULL", as_dict=1)
|
||||
|
||||
for item in items_barcode:
|
||||
doc = frappe.get_doc("Item", item.name)
|
||||
doc.append("barcodes", {"barcode": item.get("barcode")})
|
||||
doc.save()
|
||||
doc = frappe.get_doc("Item", item.get("name"))
|
||||
if item.get("barcode"):
|
||||
doc.append("barcodes", {"barcode": item.get("barcode")})
|
||||
doc.save()
|
||||
|
Loading…
x
Reference in New Issue
Block a user