INSR-8549 Missed file
This commit is contained in:
parent
4056dcf8d1
commit
edbd6b3e2d
1 changed files with 7 additions and 6 deletions
|
|
@ -2698,11 +2698,16 @@ export const useMainStore = defineStore({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
async getBillToInfo(componentProviderNumber = null) {
|
async getBillToInfo(componentProviderNumber = null) {
|
||||||
|
const providerNumber = componentProviderNumber || this.providerNumber;
|
||||||
|
if (!providerNumber) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const { order, issConfig } = this;
|
const { order, issConfig } = this;
|
||||||
const params = new URLSearchParams({
|
const params = new URLSearchParams({
|
||||||
parentAccountNumber: order.parentAccountNumber.toString(),
|
parentAccountNumber: order.parentAccountNumber.toString(),
|
||||||
providerNumber: componentProviderNumber || this.providerNumber,
|
providerNumber,
|
||||||
typeOfClaim: 'GLASS ONLY',
|
typeOfClaim: 'GLASS ONLY',
|
||||||
lineOfBusiness: 'PERSONAL',
|
lineOfBusiness: 'PERSONAL',
|
||||||
isItac: this.isITAC
|
isItac: this.isITAC
|
||||||
|
|
@ -2739,10 +2744,6 @@ export const useMainStore = defineStore({
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
saveServiceLocation(serviceLocationInfo) {
|
|
||||||
this.updateServiceLocation(serviceLocationInfo);
|
|
||||||
},
|
|
||||||
|
|
||||||
saveRegistrationAddressLookup({ isSelectedGlassAvailableForVehicle, vehicleInfo, registrationInfo }) {
|
saveRegistrationAddressLookup({ isSelectedGlassAvailableForVehicle, vehicleInfo, registrationInfo }) {
|
||||||
// Reset dependent state when changing
|
// Reset dependent state when changing
|
||||||
if
|
if
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue