18 lines
		
	
	
		
			547 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			547 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
 | |
| # License: GNU General Public License v3. See license.txt
 | |
| 
 | |
| from __future__ import unicode_literals
 | |
| import frappe
 | |
| 
 | |
| def execute():
 | |
| 	frappe.reload_doc('manufacturing', 'doctype', 'bom_operation')
 | |
| 	for d in frappe.db.sql("""select name from `tabBOM` where docstatus < 2""", as_dict=1):
 | |
| 		try:
 | |
| 			bom = frappe.get_doc('BOM', d.name)
 | |
| 			bom.flags.ignore_validate_update_after_submit = True
 | |
| 			bom.calculate_cost()
 | |
| 			bom.save()
 | |
| 			frappe.db.commit()
 | |
| 		except:
 | |
| 			frappe.db.rollback()
 |