12 lines
		
	
	
		
			258 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			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()
 |