Merge branch 'release/2026.05.07' into nation/CASH-2399
This commit is contained in:
commit
9e59eae01f
3 changed files with 12 additions and 3 deletions
|
|
@ -962,7 +962,8 @@ export default {
|
||||||
return this.supportingItems.find(
|
return this.supportingItems.find(
|
||||||
(lineItem) =>
|
(lineItem) =>
|
||||||
lineItem.partType == partTypeStrings.MOBILE_FEE &&
|
lineItem.partType == partTypeStrings.MOBILE_FEE &&
|
||||||
lineItem.partNumber == partNumberStrings.MOBILE_STATIC_RECAL_FEE
|
(lineItem.partNumber == partNumberStrings.MOBILE_STATIC_RECAL_FEE ||
|
||||||
|
lineItem.partNumber == partNumberStrings.MOBILE_DUAL_RECAL_FEE)
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
msrFeeCartItem() {
|
msrFeeCartItem() {
|
||||||
|
|
|
||||||
|
|
@ -108,7 +108,9 @@ export async function getPricingByDayPartWithPrice(pageNameToLog) {
|
||||||
export function getMSRFeePartPrice(supportingItems, includeTax) {
|
export function getMSRFeePartPrice(supportingItems, includeTax) {
|
||||||
let msrFeePrice = 0;
|
let msrFeePrice = 0;
|
||||||
const msrFeeLineItem = supportingItems?.find(
|
const msrFeeLineItem = supportingItems?.find(
|
||||||
(lineItem) => lineItem.partNumber === partNumberStrings.MOBILE_STATIC_RECAL_FEE
|
(lineItem) =>
|
||||||
|
lineItem.partNumber === partNumberStrings.MOBILE_STATIC_RECAL_FEE ||
|
||||||
|
lineItem.partNumber === partNumberStrings.MOBILE_DUAL_RECAL_FEE
|
||||||
);
|
);
|
||||||
if (msrFeeLineItem) {
|
if (msrFeeLineItem) {
|
||||||
msrFeePrice = baseMixin?.methods?.getTotalPriceOfAllLineItemsAndChildParts(
|
msrFeePrice = baseMixin?.methods?.getTotalPriceOfAllLineItemsAndChildParts(
|
||||||
|
|
|
||||||
|
|
@ -706,10 +706,16 @@ export default {
|
||||||
isMobileStaticRecalibrationApplicable() {
|
isMobileStaticRecalibrationApplicable() {
|
||||||
return (
|
return (
|
||||||
this.displayMSR &&
|
this.displayMSR &&
|
||||||
this.mobileFeePart?.partNumber == partNumberStrings.MOBILE_STATIC_RECAL_FEE &&
|
this.isMSRFeePartNumber &&
|
||||||
(this.enableMSRSplitPay || this.isCashItacNoComp || this.mobileFeePart?.isInsurable)
|
(this.enableMSRSplitPay || this.isCashItacNoComp || this.mobileFeePart?.isInsurable)
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
isMSRFeePartNumber() {
|
||||||
|
return (
|
||||||
|
this.mobileFeePart?.partNumber === partNumberStrings.MOBILE_STATIC_RECAL_FEE ||
|
||||||
|
this.mobileFeePart?.partNumber === partNumberStrings.MOBILE_DUAL_RECAL_FEE
|
||||||
|
);
|
||||||
|
},
|
||||||
displayMSR() {
|
displayMSR() {
|
||||||
return (
|
return (
|
||||||
experimentMixin.methods
|
experimentMixin.methods
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue