From cdcbf1780688c6ae5c94e0c0bfec052655cbac7d Mon Sep 17 00:00:00 2001 From: Katie Kroell Date: Thu, 30 Oct 2025 10:48:52 -0400 Subject: [PATCH] add big truck alert --- src/layouts/service-location/service-location.vue | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/layouts/service-location/service-location.vue b/src/layouts/service-location/service-location.vue index 0d25700b..da883855 100644 --- a/src/layouts/service-location/service-location.vue +++ b/src/layouts/service-location/service-location.vue @@ -51,6 +51,12 @@ class="my-5" cmsWidgetName="AlertNoShopsWidget" alertClass="alert-warning" /> +
@@ -365,7 +371,10 @@ export default { return this.zipContainsMilitaryBase && this.isServiceableMobile; }, displayNoShopsAlert() { - return !this.isServiceableInshop && !this.isServiceableMobile; + return !this.isBigTruck && !this.isServiceableInshop && !this.isServiceableMobile; + }, + displayBigTruckNoShops() { + return this.isBigTruck && !this.isServiceableInshop && !this.isServiceableMobile; }, displayRecalibrationWarning() { return this.requiresInshopRecalibration; @@ -385,6 +394,9 @@ export default { return isNoComp || isITAC ? this.navigationScenarios.CLICKED_BACK_CANNOT_REACH_TPA_FLOW : this.navigationScenarios.CLICKED_BACK_CAN_REACH_TPA_FLOW; + }, + isBigTruck() { + return this.mainStore.order.vehicle.isBigTruck; } }, methods: {