From 776c7047018f183f038b83e4fb8176a514605789 Mon Sep 17 00:00:00 2001 From: Yash Maheshwari Date: Wed, 16 Oct 2024 18:33:49 +0530 Subject: [PATCH] Removed: shipment threshold check option from inventory filters as its support is not yet available in the app --- src/components/AddInventoryFilterOptionsModal.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/AddInventoryFilterOptionsModal.vue b/src/components/AddInventoryFilterOptionsModal.vue index b1fcd28..915b511 100644 --- a/src/components/AddInventoryFilterOptionsModal.vue +++ b/src/components/AddInventoryFilterOptionsModal.vue @@ -80,7 +80,7 @@ let enumerations = ref([]) as any let areFiltersUpdated = ref(false) // Added those enums here that needs to be hidden form the UI -const hiddenOptions = ["IIP_MSMNT_SYSTEM", "IIP_SPLIT_ITEM_GROUP"] +const hiddenOptions = ["IIP_MSMNT_SYSTEM", "IIP_SPLIT_ITEM_GROUP", "IFP_SHIP_THREHOLD"] // Add entries for the enums those are dependent on another filter {enumId: { code, label }} const dependentOptions = {"ISP_CUST_SEQ": { code: "facilityGroupId", label: "Facility group" }} as any