refactor: use qb for patching flag
diff --git a/erpnext/patches/v14_0/update_batch_valuation_flag.py b/erpnext/patches/v14_0/update_batch_valuation_flag.py
index d9f08d8..55c8c48 100644
--- a/erpnext/patches/v14_0/update_batch_valuation_flag.py
+++ b/erpnext/patches/v14_0/update_batch_valuation_flag.py
@@ -6,7 +6,6 @@
 	- Don't use batchwise valuation for existing batches.
 	- Only batches created after this patch shoule use it.
 	"""
-	frappe.db.sql("""
-		UPDATE `tabBatch`
-		SET use_batchwise_valuation=0
-	""")
+
+	batch = frappe.qb.DocType("Batch")
+	frappe.qb.update(batch).set(batch.use_batchwise_valuation, 0).run()