[fix] bom.py, dont use keyword
This commit is contained in:
parent
80d24f83f8
commit
d3a48a83fd
@ -95,8 +95,8 @@ class BOM(WebsiteGenerator):
|
|||||||
self.validate_bom_currecny(item)
|
self.validate_bom_currecny(item)
|
||||||
|
|
||||||
ret = self.get_bom_material_detail({
|
ret = self.get_bom_material_detail({
|
||||||
"item_code": item.item_code,
|
"item_code": item.item_code,
|
||||||
"item_name": item.item_name,
|
"item_name": item.item_name,
|
||||||
"bom_no": item.bom_no,
|
"bom_no": item.bom_no,
|
||||||
"stock_qty": item.stock_qty
|
"stock_qty": item.stock_qty
|
||||||
})
|
})
|
||||||
@ -312,7 +312,7 @@ class BOM(WebsiteGenerator):
|
|||||||
li.append("{0} on row {1}".format(i.item_code, i.idx))
|
li.append("{0} on row {1}".format(i.item_code, i.idx))
|
||||||
duplicate_list = '<br>' + '<br>'.join(li)
|
duplicate_list = '<br>' + '<br>'.join(li)
|
||||||
|
|
||||||
frappe.throw(_("Same item has been entered multiple times. {list}").format(list=duplicate_list))
|
frappe.throw(_("Same item has been entered multiple times. {0}").format(duplicate_list))
|
||||||
|
|
||||||
def check_recursion(self):
|
def check_recursion(self):
|
||||||
""" Check whether recursion occurs in any bom"""
|
""" Check whether recursion occurs in any bom"""
|
||||||
@ -346,7 +346,7 @@ class BOM(WebsiteGenerator):
|
|||||||
count = 0
|
count = 0
|
||||||
if not bom_list:
|
if not bom_list:
|
||||||
bom_list = []
|
bom_list = []
|
||||||
|
|
||||||
if self.name not in bom_list:
|
if self.name not in bom_list:
|
||||||
bom_list.append(self.name)
|
bom_list.append(self.name)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user