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");
|
||||
},
|
||||
msrToolTipBodyText() {
|
||||
let cmsContentText = this.isInsurance
|
||||
? this.getCmsContent("MSRModal", "BodyText")
|
||||
: this.getCmsContent("MSRModal", "BodyText2");
|
||||
let cmsContentText =
|
||||
this.isInsurance && !this.isItac && !this.isNoComp
|
||||
? this.getCmsContent("MSRModal", "BodyText")
|
||||
: this.getCmsContent("MSRModal", "BodyText2");
|
||||
if (this.isInsurance && cmsContentText) {
|
||||
cmsContentText = cmsContentText.replaceAll(
|
||||
"{custom:mobileFee}",
|
||||
|
|
|
|||
|
|
@ -736,6 +736,8 @@ export default {
|
|||
this.isMobileStaticRecalibrationApplicable &&
|
||||
this.mobileFeeHasPrice &&
|
||||
this.isInsurance &&
|
||||
!this.isITAC &&
|
||||
!this.isNoComp &&
|
||||
!this.mobileFeePart?.isInsurable
|
||||
);
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue