From f29e07529ac11e8884e43406788072853ec2a171 Mon Sep 17 00:00:00 2001 From: Johnny shultz Date: Wed, 28 May 2025 11:29:22 -0400 Subject: [PATCH] CASH-494 CASH-494 added experimentOrder fields for ITAC and NoComp --- src/store/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/store/index.js b/src/store/index.js index 8356f35f3..ddb2aab19 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -963,6 +963,8 @@ export const getters = { funnelServiceState: state.order.serviceLocation.state, funnelServiceZipCode: state.order.serviceLocation.zipCode, funnelServiceZipCodeCtu: state.order.serviceLocation.zipCodeCtu, + funnelPolicyIsItac: state.order.policy.isItac ? "TRUE" : "FALSE", + funnelPolicyIsNoComp: state.order.policy.isNoComp ? "TRUE" : "FALSE", funnelProviderNumber: state.order.serviceLocation.provider.providerNumber, funnelParentAccountNumber: state.order.payment.parentAccountNumber, funnelReferralType: state.order.payment.isInsurance ? "INSURANCE" : "CASH QUOTE",