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 params = new URLSearchParams({
|
||||
parentAccountNumber: order.parentAccountNumber.toString(),
|
||||
providerNumber: componentProviderNumber || this.providerNumber,
|
||||
providerNumber,
|
||||
typeOfClaim: 'GLASS ONLY',
|
||||
lineOfBusiness: 'PERSONAL',
|
||||
isItac: this.isITAC
|
||||
|
|
@ -2739,10 +2744,6 @@ export const useMainStore = defineStore({
|
|||
});
|
||||
},
|
||||
|
||||
saveServiceLocation(serviceLocationInfo) {
|
||||
this.updateServiceLocation(serviceLocationInfo);
|
||||
},
|
||||
|
||||
saveRegistrationAddressLookup({ isSelectedGlassAvailableForVehicle, vehicleInfo, registrationInfo }) {
|
||||
// Reset dependent state when changing
|
||||
if
|
||||
|
|
|
|||
Loading…
Reference in a new issue