Merge branch 'bom_convert_uom' of https://github.com/bcornwellmott/erpnext into bom_convert_uom
diff --git a/erpnext/patches/v8_0/update_stock_qty_value_in_bom_item.py b/erpnext/patches/v8_0/update_stock_qty_value_in_bom_item.py
index 9d22787..c872177 100644
--- a/erpnext/patches/v8_0/update_stock_qty_value_in_bom_item.py
+++ b/erpnext/patches/v8_0/update_stock_qty_value_in_bom_item.py
@@ -6,6 +6,8 @@
 
 def execute():
 	frappe.reload_doc('manufacturing', 'doctype', 'bom_item')
+	frappe.reload_doc('manufacturing', 'doctype', 'bom_explosion_item')
+	frappe.reload_doc('manufacturing', 'doctype', 'bom_scrap_item')
 	frappe.db.sql("update `tabBOM Item` set stock_qty = qty, uom = stock_uom")
 	frappe.db.sql("update `tabBOM Explosion Item` set stock_qty = qty")
 	frappe.db.sql("update `tabBOM Scrap Item` set stock_qty = qty")
\ No newline at end of file