fix for unservicable.

This commit is contained in:
Bill Richardson 2026-02-25 15:04:26 -05:00
parent fce0ff3dad
commit 0c3515cef1

View file

@ -449,14 +449,19 @@ export default {
async processMobileZipCodeChange() {
showIssLoadingModal(true);
await this.updateMobileZip();
const updateMobileZipServiceLocationObj = {
mobileProviderNumber: this.mobileProviderNumber,
provider: null,
refreshDatePicker: true,
zipCode: this.zipCode,
zipCodeCtu: this.zipCodeCtu
};
this.$emit('mobile-zip-updated', updateMobileZipServiceLocationObj);
if (!this.mobileZipError) {
const updateMobileZipServiceLocationObj = {
mobileProviderNumber: this.mobileProviderNumber,
provider: null,
refreshDatePicker: true,
zipCode: this.zipCode,
zipCodeCtu: this.zipCodeCtu
};
this.$emit('mobile-zip-updated', updateMobileZipServiceLocationObj);
} else {
showIssLoadingModal(false);
}
},
setCtuForMobile(val) {
this.zipCodeCtu = val;