brotherton-erpnext/patches/june_2013/p01_update_bom_exploded_items.py

16 lines
497 B
Python
Raw Normal View History

# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
# License: GNU General Public License v3. See license.txt
2013-06-04 16:56:56 +05:30
from __future__ import unicode_literals
import webnotes
def execute():
updated_bom = []
for bom in webnotes.conn.sql("select name from tabBOM where docstatus < 2"):
if bom[0] not in updated_bom:
2013-06-04 17:20:47 +05:30
try:
bom_obj = webnotes.get_obj("BOM", bom[0], with_children=1)
2013-06-25 15:17:38 +05:30
updated_bom += bom_obj.update_cost_and_exploded_items(bom[0])
2013-06-04 17:20:47 +05:30
webnotes.conn.commit()
except:
pass