2022-02-15 06:21:52 +00:00
|
|
|
import frappe
|
|
|
|
|
|
|
|
|
|
|
|
def execute():
|
|
|
|
"""
|
|
|
|
- Don't use batchwise valuation for existing batches.
|
|
|
|
- Only batches created after this patch shoule use it.
|
|
|
|
"""
|
2022-02-19 10:56:17 +00:00
|
|
|
|
|
|
|
batch = frappe.qb.DocType("Batch")
|
|
|
|
frappe.qb.update(batch).set(batch.use_batchwise_valuation, 0).run()
|