brotherton-erpnext/erpnext/patches/v14_0/update_batch_valuation_flag.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
229 B
Python
Raw Normal View History

import frappe
def execute():
"""
- 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
""")