mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-01 17:45:56 +00:00
Update bom.py (#14524)
This commit is contained in:
committed by
Nabin Hait
parent
dd8fba6783
commit
c7afbea708
@@ -158,7 +158,7 @@ class BOM(WebsiteGenerator):
|
||||
if not self.buying_price_list:
|
||||
frappe.throw(_("Please select Price List"))
|
||||
rate = frappe.db.get_value("Item Price", {"price_list": self.buying_price_list,
|
||||
"item_code": arg["item_code"]}, "price_list_rate")
|
||||
"item_code": arg["item_code"]}, "price_list_rate") or 0.0
|
||||
|
||||
price_list_currency = frappe.db.get_value("Price List",
|
||||
self.buying_price_list, "currency")
|
||||
@@ -652,4 +652,4 @@ def get_boms_in_bottom_up_order(bom_no=None):
|
||||
bom_list.append(child_bom)
|
||||
count += 1
|
||||
|
||||
return bom_list
|
||||
return bom_list
|
||||
|
||||
Reference in New Issue
Block a user