brotherton-erpnext/erpnext/patches/v10_0/item_barcode_childtable_migrate.py
2017-12-11 09:54:18 +01:00

16 lines
449 B
Python

# Copyright (c) 2017, Frappe and Contributors
# License: GNU General Public License v3. See license.txt
from __future__ import unicode_literals
import frappe
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()