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: {