CASH-2804 show advanced MSR mobile fee for itac and nocomp

CASH-2804 show advanced MSR mobile fee for itac and nocomp
This commit is contained in:
Carl Nation 2026-05-29 07:18:23 -04:00
parent 338d9d0a18
commit 3cf35f2421

View file

@ -907,7 +907,7 @@ export default {
return cartItem;
},
isCashItacNoComp() {
return !this.isInsurance || this.isITAC || this.isNoComp;
return !this.isInsurance || this.isItac || this.isNoComp;
},
mobileFeeCartItemName() {
return this.getCmsContent("MobileServiceTextWidget", "Text");
@ -971,7 +971,7 @@ export default {
const msrFeeLineItem = this.getMsrFeeLineItem;
const shouldCreateMsrFeeCartItem =
this.isMSRFeeApplicable &&
(!this.isInsurance || !this.IsMSRFeeCoveredByInsurance) &&
(this.isCashItacNoComp || !this.IsMSRFeeCoveredByInsurance) &&
msrFeeLineItem &&
this.msrFeeAmount > 0;