From 918a8ca593f577897755077d1c12e716165e213f Mon Sep 17 00:00:00 2001 From: CarlNation Date: Wed, 19 Feb 2025 15:29:29 -0500 Subject: [PATCH 1/2] CASH-242 CASH-242 revert change for CSR-2276 and test with quick quote --- src/store/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/store/index.js b/src/store/index.js index 03e8f339a..1f68c4989 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -524,6 +524,7 @@ export const mutations = { }, resetExternalParameterQuoteState(state) { externalParameterState.quote.servicePackage = null; + externalParameterState.quote.isInsurance = null; saveExternalParameterState(externalParameterState); }, resetIsExternalParameter(state) { @@ -713,6 +714,7 @@ export const mutations = { !sessionInformation.order.serviceLocation.provider?.providerNumber ) { state.order.payment.isInsurance = null; + //externalParameterState.isExternalParameter = externalParameterStatus.NOT_SET; } else { state.order.payment.isInsurance = sessionInformation.order.payment.isInsurance; } From 50c9517fbbde1d941044fb4ad12407d73341679c Mon Sep 17 00:00:00 2001 From: CarlNation Date: Wed, 19 Feb 2025 15:36:44 -0500 Subject: [PATCH 2/2] CASH-242 CASH-242 remove comment --- src/store/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/store/index.js b/src/store/index.js index 1f68c4989..83c38c570 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -714,7 +714,6 @@ export const mutations = { !sessionInformation.order.serviceLocation.provider?.providerNumber ) { state.order.payment.isInsurance = null; - //externalParameterState.isExternalParameter = externalParameterStatus.NOT_SET; } else { state.order.payment.isInsurance = sessionInformation.order.payment.isInsurance; }