fix: add missing patch

This commit is contained in:
Mihir Kandoi
2025-12-30 10:51:28 +05:30
parent 43cdca950f
commit b8ecefa06c
3 changed files with 9 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
import frappe
def execute():
frappe.qb.update("Item Barcode").set("barcode_type", "EAN-13").where(
frappe.qb.Field("barcode_type") == "EAN-12"
).run()