create item price only if item created, fixes #12041
This commit is contained in:
parent
5a344576b8
commit
3942cd353a
@ -113,6 +113,9 @@ def create_items(args_data):
|
|||||||
"default_warehouse": default_warehouse
|
"default_warehouse": default_warehouse
|
||||||
}).insert()
|
}).insert()
|
||||||
|
|
||||||
|
except frappe.NameError:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
if args.get("item_price_" + str(i)):
|
if args.get("item_price_" + str(i)):
|
||||||
item_price = flt(args.get("item_price_" + str(i)))
|
item_price = flt(args.get("item_price_" + str(i)))
|
||||||
|
|
||||||
@ -121,8 +124,6 @@ def create_items(args_data):
|
|||||||
price_list_name = frappe.db.get_value("Price List", {"buying": 1})
|
price_list_name = frappe.db.get_value("Price List", {"buying": 1})
|
||||||
make_item_price(item, price_list_name, item_price)
|
make_item_price(item, price_list_name, item_price)
|
||||||
|
|
||||||
except frappe.NameError:
|
|
||||||
pass
|
|
||||||
|
|
||||||
def make_item_price(item, price_list_name, item_price):
|
def make_item_price(item, price_list_name, item_price):
|
||||||
frappe.get_doc({
|
frappe.get_doc({
|
||||||
|
Loading…
Reference in New Issue
Block a user