brotherton-erpnext/erpnext/patches/v14_0/update_batch_valuation_flag.py
2022-02-21 18:02:40 +05:30

12 lines
258 B
Python

import frappe
def execute():
"""
- Don't use batchwise valuation for existing batches.
- Only batches created after this patch shoule use it.
"""
batch = frappe.qb.DocType("Batch")
frappe.qb.update(batch).set(batch.use_batchwise_valuation, 0).run()