don't set the ordered_qty in SO on load from BIN
This commit is contained in:
parent
144c9977a2
commit
a884bd9c6a
@ -472,8 +472,8 @@ def get_projected_qty(item_code, warehouse):
|
|||||||
@frappe.whitelist()
|
@frappe.whitelist()
|
||||||
def get_bin_details(item_code, warehouse):
|
def get_bin_details(item_code, warehouse):
|
||||||
return frappe.db.get_value("Bin", {"item_code": item_code, "warehouse": warehouse},
|
return frappe.db.get_value("Bin", {"item_code": item_code, "warehouse": warehouse},
|
||||||
["projected_qty", "actual_qty", "ordered_qty"], as_dict=True) \
|
["projected_qty", "actual_qty"], as_dict=True) \
|
||||||
or {"projected_qty": 0, "actual_qty": 0, "ordered_qty": 0}
|
or {"projected_qty": 0, "actual_qty": 0}
|
||||||
|
|
||||||
@frappe.whitelist()
|
@frappe.whitelist()
|
||||||
def get_serial_no_details(item_code, warehouse, stock_qty, serial_no):
|
def get_serial_no_details(item_code, warehouse, stock_qty, serial_no):
|
||||||
|
Loading…
Reference in New Issue
Block a user