diff --git a/src/constants/application-config.js b/src/constants/application-config.js index c0bcd8de..aa067eba 100644 --- a/src/constants/application-config.js +++ b/src/constants/application-config.js @@ -18,16 +18,8 @@ const applicationConfig = Object.freeze({ GOOGLE_PLACES_API_KEY: process.env.VUE_APP_GOOGLE_PLACES_API_KEY, ISS_DEV_CMS_DOMAIN: 'https://digitalisscms.dev.safelite.io', CASH_PARENT_ACCOUNT_NUMBER: 167132, - PAY_IN_ADVANCE_RESPONSE_URL: - `${location.protocol - }//${ - location.host - }/?issPage=payment-return&src=iss-nextgen`, - PAY_IN_ADVANCE_CANCEL_URL: - `${location.protocol - }//${ - location.host - }/?issPage=payment-method&src=iss-nextgen` + ITAC_FAIR_AND_REASONABLE_BILLTO: '214616', // Lib Mutal FnR BillTo + ITAC_CASH_BILLTO: '283393' // Lib Mutal ITAC Cash BillTo }); export default applicationConfig; diff --git a/src/iss-components/site-sub-header/site-sub-header.vue b/src/iss-components/site-sub-header/site-sub-header.vue index a26ea95f..2ea8340f 100644 --- a/src/iss-components/site-sub-header/site-sub-header.vue +++ b/src/iss-components/site-sub-header/site-sub-header.vue @@ -16,7 +16,7 @@
+ :class="[justifySubheader, subHeaderClasses]">

@@ -50,6 +50,7 @@ export default { justification: String, stripRteStyle: Boolean, subContentProperty: String, + subHeaderClasses: String, subTextClasses: String }, emits: ['click-event'], diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index b08cb685..5d50380d 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -12,8 +12,9 @@ cmsWidgetName="VehicleBannerWidget" :displayGenericVehicleImage="false" /> + class="mb-5 mt-4 px-3" + cmsWidgetName="SiteSubHeaderWidget" + subHeaderClasses="mt-2" />


diff --git a/src/store/index.js b/src/store/index.js index 3daecdfc..0cd14b11 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -776,6 +776,7 @@ export const useMainStore = defineStore({ startDate, endDate, applicationName: applicationConfig.APPLICATION_NAME, + billToAccountNumber: this.issConfig.parentAccountNumber.toString(), // TODO: MAKE THIS REAL parentAccountNumber: this.issConfig.parentAccountNumber, // this.payment.parentAccountNumber, carId: vehicle.carId, lineItems, @@ -838,6 +839,7 @@ export const useMainStore = defineStore({ endDate, shopAppointmentType, applicationName: applicationConfig.APPLICATION_NAME, + billToAccountNumber: order.policy.isITAC ? applicationConfig.ITAC_CASH_BILLTO : applicationConfig.ITAC_FAIR_AND_REASONABLE_BILLTO, // TODO: MAKE THIS REAL parentAccountNumber: this.issConfig.parentAccountNumber, // this.payment.parentAccountNumber, carId: vehicle.carId, lineItems,