[fix] Update exploded materials table from 'Update Cost' button
This commit is contained in:
parent
17e9b9444d
commit
cf3cf2ca1f
@ -124,22 +124,17 @@ class BOM(Document):
|
|||||||
if self.docstatus == 2:
|
if self.docstatus == 2:
|
||||||
return
|
return
|
||||||
|
|
||||||
items_rate = frappe._dict()
|
|
||||||
for d in self.get("items"):
|
for d in self.get("items"):
|
||||||
rate = self.get_bom_material_detail({'item_code': d.item_code, 'bom_no': d.bom_no,
|
rate = self.get_bom_material_detail({'item_code': d.item_code, 'bom_no': d.bom_no,
|
||||||
'qty': d.qty})["rate"]
|
'qty': d.qty})["rate"]
|
||||||
if rate:
|
if rate:
|
||||||
d.rate = rate
|
d.rate = rate
|
||||||
items_rate.setdefault(d.item_code, d.rate)
|
|
||||||
|
|
||||||
for e in self.get("exploded_items"):
|
|
||||||
if items_rate.get(e.item_code):
|
|
||||||
e.rate = items_rate.get(e.item_code)
|
|
||||||
|
|
||||||
if self.docstatus == 1:
|
if self.docstatus == 1:
|
||||||
self.flags.ignore_validate_update_after_submit = True
|
self.flags.ignore_validate_update_after_submit = True
|
||||||
self.calculate_cost()
|
self.calculate_cost()
|
||||||
self.save()
|
self.save()
|
||||||
|
self.update_exploded_items()
|
||||||
|
|
||||||
frappe.msgprint(_("Cost Updated"))
|
frappe.msgprint(_("Cost Updated"))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user