mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-05 13:24:47 +00:00
8 lines
157 B
Python
8 lines
157 B
Python
import frappe
|
|
|
|
|
|
def execute():
|
|
frappe.qb.update("Item Barcode").set("barcode_type", "EAN-13").where(
|
|
frappe.qb.Field("barcode_type") == "EAN-12"
|
|
).run()
|