Merge pull request #3199 from Safelite/nation/CASH-2753
CASH-2753 itac nocomp should work like cash
This commit is contained in:
commit
53995d7535
2 changed files with 6 additions and 3 deletions
|
|
@ -1007,9 +1007,10 @@ export default {
|
||||||
return this.getCmsContent("RecycleTextBlock", "Text");
|
return this.getCmsContent("RecycleTextBlock", "Text");
|
||||||
},
|
},
|
||||||
msrToolTipBodyText() {
|
msrToolTipBodyText() {
|
||||||
let cmsContentText = this.isInsurance
|
let cmsContentText =
|
||||||
? this.getCmsContent("MSRModal", "BodyText")
|
this.isInsurance && !this.isItac && !this.isNoComp
|
||||||
: this.getCmsContent("MSRModal", "BodyText2");
|
? this.getCmsContent("MSRModal", "BodyText")
|
||||||
|
: this.getCmsContent("MSRModal", "BodyText2");
|
||||||
if (this.isInsurance && cmsContentText) {
|
if (this.isInsurance && cmsContentText) {
|
||||||
cmsContentText = cmsContentText.replaceAll(
|
cmsContentText = cmsContentText.replaceAll(
|
||||||
"{custom:mobileFee}",
|
"{custom:mobileFee}",
|
||||||
|
|
|
||||||
|
|
@ -736,6 +736,8 @@ export default {
|
||||||
this.isMobileStaticRecalibrationApplicable &&
|
this.isMobileStaticRecalibrationApplicable &&
|
||||||
this.mobileFeeHasPrice &&
|
this.mobileFeeHasPrice &&
|
||||||
this.isInsurance &&
|
this.isInsurance &&
|
||||||
|
!this.isITAC &&
|
||||||
|
!this.isNoComp &&
|
||||||
!this.mobileFeePart?.isInsurable
|
!this.mobileFeePart?.isInsurable
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue