revert: Reverting changes done on 33495 (#33662)

'ordered_qty' will not be fetched from `tabBin`
This commit is contained in:
ruthra kumar 2023-01-16 08:50:39 +05:30 committed by GitHub
parent 333907b7a5
commit be382054e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

View File

@ -106,7 +106,6 @@ class TestItem(FrappeTestCase):
"conversion_factor": 1.0, "conversion_factor": 1.0,
"reserved_qty": 1, "reserved_qty": 1,
"actual_qty": 5, "actual_qty": 5,
"ordered_qty": 10,
"projected_qty": 14, "projected_qty": 14,
} }

View File

@ -1181,7 +1181,7 @@ def get_projected_qty(item_code, warehouse):
@frappe.whitelist() @frappe.whitelist()
def get_bin_details(item_code, warehouse, company=None, include_child_warehouses=False): def get_bin_details(item_code, warehouse, company=None, include_child_warehouses=False):
bin_details = {"projected_qty": 0, "actual_qty": 0, "reserved_qty": 0, "ordered_qty": 0} bin_details = {"projected_qty": 0, "actual_qty": 0, "reserved_qty": 0}
if warehouse: if warehouse:
from frappe.query_builder.functions import Coalesce, Sum from frappe.query_builder.functions import Coalesce, Sum
@ -1197,7 +1197,6 @@ def get_bin_details(item_code, warehouse, company=None, include_child_warehouses
Coalesce(Sum(bin.projected_qty), 0).as_("projected_qty"), Coalesce(Sum(bin.projected_qty), 0).as_("projected_qty"),
Coalesce(Sum(bin.actual_qty), 0).as_("actual_qty"), Coalesce(Sum(bin.actual_qty), 0).as_("actual_qty"),
Coalesce(Sum(bin.reserved_qty), 0).as_("reserved_qty"), Coalesce(Sum(bin.reserved_qty), 0).as_("reserved_qty"),
Coalesce(Sum(bin.ordered_qty), 0).as_("ordered_qty"),
) )
.where((bin.item_code == item_code) & (bin.warehouse.isin(warehouses))) .where((bin.item_code == item_code) & (bin.warehouse.isin(warehouses)))
).run(as_dict=True)[0] ).run(as_dict=True)[0]