2015-03-03 14:55:30 +05:30
|
|
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
2014-10-10 18:48:09 +05:30
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import frappe
|
|
|
|
|
|
|
|
def execute():
|
2014-10-14 12:12:40 +05:30
|
|
|
for d in frappe.db.sql("select name from `tabBOM` where docstatus < 2"):
|
2015-02-10 14:41:27 +05:30
|
|
|
try:
|
2014-10-10 18:48:09 +05:30
|
|
|
document = frappe.get_doc('BOM', d[0])
|
|
|
|
if document.docstatus == 1:
|
2015-02-10 14:41:27 +05:30
|
|
|
document.flags.ignore_validate_update_after_submit = True
|
2014-10-10 18:48:09 +05:30
|
|
|
document.calculate_cost()
|
|
|
|
document.save()
|
2014-10-14 12:12:40 +05:30
|
|
|
except:
|
2015-02-10 14:41:27 +05:30
|
|
|
pass
|