Merge remote-tracking branch 'origin/develop' into feature/digital/SSR-1063
This commit is contained in:
commit
799d6bbb2c
4 changed files with 9 additions and 13 deletions
|
|
@ -18,16 +18,8 @@ const applicationConfig = Object.freeze({
|
||||||
GOOGLE_PLACES_API_KEY: process.env.VUE_APP_GOOGLE_PLACES_API_KEY,
|
GOOGLE_PLACES_API_KEY: process.env.VUE_APP_GOOGLE_PLACES_API_KEY,
|
||||||
ISS_DEV_CMS_DOMAIN: 'https://digitalisscms.dev.safelite.io',
|
ISS_DEV_CMS_DOMAIN: 'https://digitalisscms.dev.safelite.io',
|
||||||
CASH_PARENT_ACCOUNT_NUMBER: 167132,
|
CASH_PARENT_ACCOUNT_NUMBER: 167132,
|
||||||
PAY_IN_ADVANCE_RESPONSE_URL:
|
ITAC_FAIR_AND_REASONABLE_BILLTO: '214616', // Lib Mutal FnR BillTo
|
||||||
`${location.protocol
|
ITAC_CASH_BILLTO: '283393' // Lib Mutal ITAC Cash BillTo
|
||||||
}//${
|
|
||||||
location.host
|
|
||||||
}/?issPage=payment-return&src=iss-nextgen`,
|
|
||||||
PAY_IN_ADVANCE_CANCEL_URL:
|
|
||||||
`${location.protocol
|
|
||||||
}//${
|
|
||||||
location.host
|
|
||||||
}/?issPage=payment-method&src=iss-nextgen`
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export default applicationConfig;
|
export default applicationConfig;
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="subheader-secondary d-flex align-items-center container-fluid overflow-hidden"
|
class="subheader-secondary d-flex align-items-center container-fluid overflow-hidden"
|
||||||
:class="justifySubheader">
|
:class="[justifySubheader, subHeaderClasses]">
|
||||||
<p
|
<p
|
||||||
class="fw-normal mb-0"
|
class="fw-normal mb-0"
|
||||||
:class="[alternateFormatting, subTextClasses]">
|
:class="[alternateFormatting, subTextClasses]">
|
||||||
|
|
@ -50,6 +50,7 @@ export default {
|
||||||
justification: String,
|
justification: String,
|
||||||
stripRteStyle: Boolean,
|
stripRteStyle: Boolean,
|
||||||
subContentProperty: String,
|
subContentProperty: String,
|
||||||
|
subHeaderClasses: String,
|
||||||
subTextClasses: String
|
subTextClasses: String
|
||||||
},
|
},
|
||||||
emits: ['click-event'],
|
emits: ['click-event'],
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,9 @@
|
||||||
cmsWidgetName="VehicleBannerWidget"
|
cmsWidgetName="VehicleBannerWidget"
|
||||||
:displayGenericVehicleImage="false" />
|
:displayGenericVehicleImage="false" />
|
||||||
<siteSubHeader
|
<siteSubHeader
|
||||||
class="mb-5 mt-4 hello"
|
class="mb-5 mt-4 px-3"
|
||||||
cmsWidgetName="SiteSubHeaderWidget" />
|
cmsWidgetName="SiteSubHeaderWidget"
|
||||||
|
subHeaderClasses="mt-2" />
|
||||||
<div class="main-content-container">
|
<div class="main-content-container">
|
||||||
<hr class="my-0" />
|
<hr class="my-0" />
|
||||||
<reviewDropdown ref="reviewDropdown" />
|
<reviewDropdown ref="reviewDropdown" />
|
||||||
|
|
|
||||||
|
|
@ -776,6 +776,7 @@ export const useMainStore = defineStore({
|
||||||
startDate,
|
startDate,
|
||||||
endDate,
|
endDate,
|
||||||
applicationName: applicationConfig.APPLICATION_NAME,
|
applicationName: applicationConfig.APPLICATION_NAME,
|
||||||
|
billToAccountNumber: this.issConfig.parentAccountNumber.toString(), // TODO: MAKE THIS REAL
|
||||||
parentAccountNumber: this.issConfig.parentAccountNumber, // this.payment.parentAccountNumber,
|
parentAccountNumber: this.issConfig.parentAccountNumber, // this.payment.parentAccountNumber,
|
||||||
carId: vehicle.carId,
|
carId: vehicle.carId,
|
||||||
lineItems,
|
lineItems,
|
||||||
|
|
@ -838,6 +839,7 @@ export const useMainStore = defineStore({
|
||||||
endDate,
|
endDate,
|
||||||
shopAppointmentType,
|
shopAppointmentType,
|
||||||
applicationName: applicationConfig.APPLICATION_NAME,
|
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,
|
parentAccountNumber: this.issConfig.parentAccountNumber, // this.payment.parentAccountNumber,
|
||||||
carId: vehicle.carId,
|
carId: vehicle.carId,
|
||||||
lineItems,
|
lineItems,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue