parent
dce4c07260
commit
f2f8c2bead
1 changed files with 5 additions and 10 deletions
|
|
@ -53,13 +53,8 @@
|
|||
<textBlock cmsWidgetName="CallOrTextWidget" justifyText="left" />
|
||||
<hr class="my-5" />
|
||||
<div class="d-flex flex-row checkbox-group">
|
||||
<checkboxQuestion
|
||||
class="mb-5"
|
||||
v-model="isRecalAck" />
|
||||
<textBlock
|
||||
cmsWidgetName="RecalConfirmationWidget"
|
||||
justifyText="left"
|
||||
@text-link-clicked="openModal" />
|
||||
<checkboxQuestion class="mb-5" v-model="isRecalAckOptIn" />
|
||||
<textBlock cmsWidgetName="RecalConfirmationWidget" justifyText="left" @text-link-clicked="openModal" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
@ -337,7 +332,7 @@ export default {
|
|||
availableVaps: [],
|
||||
paymentMethodInternalModel: this.getPaymentMethodFromStore(),
|
||||
inactivePromos: this.getInactivePromosFromStore(),
|
||||
isRecalAck: this.getIsRecalAckFromStore(),
|
||||
isRecalAckOptIn: this.getIsRecalAckOptInFromStore(),
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
|
|
@ -407,8 +402,8 @@ export default {
|
|||
|
||||
return serviceLocationReqs && isInsuranceSet && scheduleReqs && customerReqs;
|
||||
},
|
||||
getIsRecalAckFromStore() {
|
||||
return store.getters.order.customer.isRecalAck;
|
||||
getIsRecalAckOptInFromStore() {
|
||||
return store.getters.order.customer.isRecalAckOptIn;
|
||||
},
|
||||
getPaymentMethodFromStore() {
|
||||
const piaType = store.getters.order.payment.piaType;
|
||||
|
|
|
|||
Loading…
Reference in a new issue