diff --git a/.env.example b/.env.example index f8f7b7f3..3d25a5d4 100644 --- a/.env.example +++ b/.env.example @@ -3,5 +3,4 @@ VUE_APP_I18N_FALLBACK_LOCALE=en VUE_APP_CACHE_MAX_AGE=3600 VUE_APP_VIEW_SIZE=60 VUE_APP_BASE_URL= -VUE_APP_PERMISSION_ID= -VUE_APP_DEFAULT_STORELOOKUP_DISTANCE=50 \ No newline at end of file +VUE_APP_PERMISSION_ID= \ No newline at end of file diff --git a/src/views/Order.vue b/src/views/Order.vue index 1440c0ac..b3e65a10 100644 --- a/src/views/Order.vue +++ b/src/views/Order.vue @@ -208,7 +208,7 @@ export default defineComponent({ order = resp.data; const productIds: any = new Set(); order.shipGroup = order.shipGroup.filter((group: any) => { - if(group.facilityId === '_NA_') { + if(group.facilityId === 'PICKUP_REJECTED') { group.selectedShipmentMethodTypeId = group.shipmentMethodTypeId; group.items = group.items.filter((item: any) => { if (item.status == 'ITEM_CANCELLED') return false; diff --git a/src/views/PickupLocationModal.vue b/src/views/PickupLocationModal.vue index e103804d..e3e6d1f8 100644 --- a/src/views/PickupLocationModal.vue +++ b/src/views/PickupLocationModal.vue @@ -130,7 +130,6 @@ export default defineComponent({ if (point) { payload.point = point - payload.distance = process.env.VUE_APP_DEFAULT_STORELOOKUP_DISTANCE ? process.env.VUE_APP_DEFAULT_STORELOOKUP_DISTANCE : 50 } try {