Merge branch 'release/2026.05.07' into nation/CASH-2399

This commit is contained in:
CarlNation 2026-04-27 11:04:35 -04:00 committed by GitHub
commit 9e59eae01f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 12 additions and 3 deletions

View file

@ -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() {

View file

@ -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(

View file

@ -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