Merge pull request #2347 from Safelite/rlsmerge/2025.03.13-to-develop

Rlsmerge/2025.03.13 to develop
This commit is contained in:
CarlNation 2025-03-07 08:42:51 -05:00 committed by GitHub
commit 028f790509
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 19 additions and 9 deletions

View file

@ -61,11 +61,11 @@
<div class="col-12"> <div class="col-12">
<div <div
v-if="showDonationSuccess" v-if="showDonationSuccess"
class="d-flex justify-content-center align-items-center btn-success w-100 mb-2" class="d-flex justify-content-center align-items-center btn-success w-100"
v-html="DonationThanksAlertWidget"></div> v-html="DonationThanksAlertWidget"></div>
</div> </div>
</div> </div>
<div class="row px-4"> <div class="row px-4 mt-2">
<div class="col"> <div class="col">
<alert <alert
v-if="showDonationError" v-if="showDonationError"
@ -142,7 +142,7 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.donation-block { .donation-block {
padding: 1rem 0; padding: 1rem 0 0 0;
background-color: $gray-100; background-color: $gray-100;
border-radius: 0; border-radius: 0;

View file

@ -200,6 +200,7 @@ export default {
isItac: Boolean, isItac: Boolean,
isNoComp: Boolean, isNoComp: Boolean,
isExpandedOnLoad: Boolean, isExpandedOnLoad: Boolean,
isMSRFeeApplicable: Boolean,
}, },
data() { data() {
return { return {
@ -846,9 +847,6 @@ export default {
isCashItacNoComp() { isCashItacNoComp() {
return !this.isInsurance || this.isITAC || this.isNoComp; return !this.isInsurance || this.isITAC || this.isNoComp;
}, },
getIsMSRFeeApplicableFromStore() {
return this.$store.getters.order.isMSRFeeApplicable;
},
mobileFeeCartItemName() { mobileFeeCartItemName() {
return this.getCmsContent("MobileServiceTextWidget", "Text"); return this.getCmsContent("MobileServiceTextWidget", "Text");
}, },
@ -865,7 +863,7 @@ export default {
(mobileFeeLineItem?.sellingPrice ?? 0); (mobileFeeLineItem?.sellingPrice ?? 0);
if (mobileTotal > 0) { if (mobileTotal > 0) {
if (this.getIsMSRFeeApplicableFromStore) { if (this.isMSRFeeApplicable) {
showMobileFeeCartItem = this.isCashItacNoComp; showMobileFeeCartItem = this.isCashItacNoComp;
} else { } else {
showMobileFeeCartItem = true; showMobileFeeCartItem = true;

View file

@ -62,7 +62,8 @@
:shouldHideRecalibration="shouldHideRecalibration" :shouldHideRecalibration="shouldHideRecalibration"
:isExpandedOnLoad="false" :isExpandedOnLoad="false"
:isItac="isItac" :isItac="isItac"
:isNoComp="isNoComp" /> :isNoComp="isNoComp"
:isMSRFeeApplicable="isMSRFeeApplicable" />
<div class="mt-3" v-if="DisplayFosterLove"> <div class="mt-3" v-if="DisplayFosterLove">
<donationBlock <donationBlock
@ -423,6 +424,9 @@ export default {
damageInfo() { damageInfo() {
return this.submittedOrder?.damage; return this.submittedOrder?.damage;
}, },
isMSRFeeApplicable() {
return this.submittedOrder?.isMSRFeeApplicable;
},
isInsurance() { isInsurance() {
return this.submittedOrder?.payment?.isInsurance; return this.submittedOrder?.payment?.isInsurance;
}, },

View file

@ -36,7 +36,8 @@
:shouldHideRecalibration="shouldHideRecalibration" :shouldHideRecalibration="shouldHideRecalibration"
:isItac="isItac" :isItac="isItac"
:isNoComp="isNoComp" :isNoComp="isNoComp"
:isExpandedOnLoad="false" /> :isExpandedOnLoad="false"
:isMSRFeeApplicable="isMSRFeeApplicable" />
<hr /> <hr />
@ -683,6 +684,9 @@ export default {
damageInfo() { damageInfo() {
return this.$store.getters.damage; return this.$store.getters.damage;
}, },
isMSRFeeApplicable() {
return this.$store.getters.order.isMSRFeeApplicable;
},
isInsurance() { isInsurance() {
return this.hasSubmittedOrder() return this.hasSubmittedOrder()
? this.getSubmittedOrder()?.payment.isInsurance ? this.getSubmittedOrder()?.payment.isInsurance

View file

@ -15,6 +15,10 @@ import loadingModal from "@/fmg-components/loading-modal/loading-modal.vue";
import { Form } from "vee-validate"; import { Form } from "vee-validate";
import { paymentMethods } from "@/constants/payment-method-constants"; import { paymentMethods } from "@/constants/payment-method-constants";
import { routerParams } from "@/router/router-constants/router-params"; import { routerParams } from "@/router/router-constants/router-params";
// iframeResizer IS loaded into the page and necessary for the package to
// to auto scale the iFrame this page is loaded in
// Do not remove despite showing as "unused" CASH-309
import iframeResizer from "@iframe-resizer/child";
export default { export default {
name: "payment-pia-return", name: "payment-pia-return",