Merge remote-tracking branch 'origin/develop' into feature/digital/SSR-1063

This commit is contained in:
Matt Caimi 2024-02-22 10:38:18 -05:00
commit 799d6bbb2c
4 changed files with 9 additions and 13 deletions

View file

@ -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;

View file

@ -16,7 +16,7 @@
</div>
<div
class="subheader-secondary d-flex align-items-center container-fluid overflow-hidden"
:class="justifySubheader">
:class="[justifySubheader, subHeaderClasses]">
<p
class="fw-normal mb-0"
:class="[alternateFormatting, subTextClasses]">
@ -50,6 +50,7 @@ export default {
justification: String,
stripRteStyle: Boolean,
subContentProperty: String,
subHeaderClasses: String,
subTextClasses: String
},
emits: ['click-event'],

View file

@ -12,8 +12,9 @@
cmsWidgetName="VehicleBannerWidget"
:displayGenericVehicleImage="false" />
<siteSubHeader
class="mb-5 mt-4 hello"
cmsWidgetName="SiteSubHeaderWidget" />
class="mb-5 mt-4 px-3"
cmsWidgetName="SiteSubHeaderWidget"
subHeaderClasses="mt-2" />
<div class="main-content-container">
<hr class="my-0" />
<reviewDropdown ref="reviewDropdown" />

View file

@ -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,