Fetch reserved qty (#15182)

* Fetch reserved qty

* Update get_item_details.py
This commit is contained in:
Shreya Shah 2018-08-22 14:45:22 +05:30 committed by Nabin Hait
parent b800382abf
commit be7703387d

View File

@ -481,8 +481,8 @@ def get_projected_qty(item_code, warehouse):
@frappe.whitelist()
def get_bin_details(item_code, warehouse):
return frappe.db.get_value("Bin", {"item_code": item_code, "warehouse": warehouse},
["projected_qty", "actual_qty"], as_dict=True) \
or {"projected_qty": 0, "actual_qty": 0}
["projected_qty", "actual_qty", "reserved_qty"], as_dict=True) \
or {"projected_qty": 0, "actual_qty": 0, "reserved_qty": 0}
@frappe.whitelist()
def get_serial_no_details(item_code, warehouse, stock_qty, serial_no):