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 11:26:56 +00:00
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 11:50:47 +00:00
try:
bom_obj = webnotes.get_obj("BOM", bom[0], with_children=1)
2013-06-25 09:47:38 +00:00
updated_bom += bom_obj.update_cost_and_exploded_items(bom[0])
2013-06-04 11:50:47 +00:00
webnotes.conn.commit()
except:
pass