CSR-2166: remove temp changes that were needed to test on dev

This commit is contained in:
Adam Caouette 2024-09-23 18:18:45 -04:00
parent 53d4a09a52
commit 3cd54358c6
2 changed files with 0 additions and 29 deletions

View file

@ -15,13 +15,6 @@
<funnelSubHeader class="mb-5" cmsWidgetName="FunnelSubHeaderWidget" />
<hr />
<p style="color: blue;">thresholdToUse: {{ thresholdToUse }}</p>
<p style="color: blue;">externalSource: {{ externalSource }}</p>
<p style="color: blue;">typeof recalSettingValue: {{ typeof recalSettingValue }}</p>
<p style="color: blue;">recalSettingValue: {{ recalSettingValue }}</p>
<hr />
<cashOrInsuranceQuestion
ref="cashOrInsurance"
cmsWidgetName="CashOrInsuranceQuestionWidget"
@ -327,10 +320,6 @@ export default {
)
: baseMixin.methods.filterOutFees(availableLineItems);
let tierOnePackagePriceTemp = baseMixin.methods.getTierOnePackagePrice(
lineItemsForCalculatingPrice
); // TEMP, FOR TESTING /// TODO AJC: TIGHTEN THIS BACK UP AFTER TESTING
return (
baseMixin.methods.getTierOnePackagePrice(lineItemsForCalculatingPrice) >
insuranceThreshold
@ -374,8 +363,6 @@ export default {
? store.getters.externalParameterSource
: null;
vm.externalSource = externalSource; // TEMP 9/23
// Business logic to determine what "external" source is
if (externalSource?.includes("LeadGen")) {
const externalThreshold = experimentMixin.methods.getSettingValue(
@ -392,8 +379,6 @@ export default {
baseMixin.methods.ResetExternalParamsAndHideModal();
}
}
vm.thresholdToUse = thresholdToUse;
});
},
data() {
@ -405,9 +390,6 @@ export default {
servicePackage: null,
holdParentAccountNumber: null,
holdBillToAccountNumber: null,
thresholdToUse: null, // TEMP 9/23
externalSource: null, // TEMP 9/23
};
},
computed: {

View file

@ -1,15 +1,4 @@
<template>
<hr />
<p style="color: red;">isInsuranceSelected: {{ isInsuranceSelected }}</p>
<p style="color: red;">typeof isRecalibrationOnOrder: {{ typeof isRecalibrationOnOrder }}</p>
<p style="color: red;">isRecalibrationOnOrder: {{ isRecalibrationOnOrder }}</p>
<p style="color: red;">typeof shouldHideRecalibration: {{ typeof shouldHideRecalibration }}</p>
<p style="color: red;">shouldHideRecalibration: {{ shouldHideRecalibration }}</p>
<hr />
<buttonQuestion
ref="buttonQuestion"
:answers="servicePackageAnswers"