remove carrier phone number if unverified
This commit is contained in:
parent
0603c37adc
commit
3b00d754f7
1 changed files with 4 additions and 1 deletions
|
|
@ -141,8 +141,9 @@ export default {
|
||||||
return this.getCmsContent('TPAConfirmationContent', 'BodyText2');
|
return this.getCmsContent('TPAConfirmationContent', 'BodyText2');
|
||||||
},
|
},
|
||||||
contactCarrierText() {
|
contactCarrierText() {
|
||||||
return this.getCmsContent('ContactCarrierContent', 'Text')
|
const contactCarrierText = this.getCmsContent('ContactCarrierContent', 'Text')
|
||||||
?.replaceAll('{custom:carrierPhoneNumber}', this.carrierPhoneNumber);
|
?.replaceAll('{custom:carrierPhoneNumber}', this.carrierPhoneNumber);
|
||||||
|
return this.processIfStatements(contactCarrierText, 'custom', this.getCustomValueFromString);
|
||||||
},
|
},
|
||||||
orderDetailsTitle() {
|
orderDetailsTitle() {
|
||||||
return this.getCmsContent('OrderDetailsContent', 'HeaderText');
|
return this.getCmsContent('OrderDetailsContent', 'HeaderText');
|
||||||
|
|
@ -200,6 +201,8 @@ export default {
|
||||||
return this.isVerified && this.currentDeductible === 0;
|
return this.isVerified && this.currentDeductible === 0;
|
||||||
case 'verifyingCoverage':
|
case 'verifyingCoverage':
|
||||||
return !this.isVerified;
|
return !this.isVerified;
|
||||||
|
case 'coverageVerified':
|
||||||
|
return this.isVerified;
|
||||||
default:
|
default:
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue