From bfe757df3e3119ba7eac7a85d43c3792eb079cbd Mon Sep 17 00:00:00 2001 From: Bill Richardson Date: Fri, 15 Sep 2023 12:13:48 -0400 Subject: [PATCH] eon of 0 (hardcoded) failed price service --- src/store/index.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/store/index.js b/src/store/index.js index 387b74e7..06f9a004 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -707,15 +707,15 @@ export const useMainStore = defineStore({ zipCodeToUse = '44902'; ctuToUse = '01820'; const queryString = - `ParentAccountNumber=${applicationConfig.CASH_PARENT_ACCOUNT_NUMBER}` - + `&CTU=${ctuToUse}` - + `&CarId=${vehicle.carId}` - + `&Make=${vehicle.make}` - + `&Model=${vehicle.model}` - + `&Year=${vehicle.year}` - + '&EON=0' - + `&ZipCode=${zipCodeToUse}` - + `${availableLineItemsFormattedForRequest}`; + `ParentAccountNumber=${applicationConfig.CASH_PARENT_ACCOUNT_NUMBER}` + + `&CTU=${ctuToUse}` + + `&CarId=${vehicle.carId}` + + `&Make=${vehicle.make}` + + `&Model=${vehicle.model}` + + `&Year=${vehicle.year}` + + `&EON=${this.order.eon}` + + `&ZipCode=${zipCodeToUse}` + + `${availableLineItemsFormattedForRequest}`; const response = await globalMethods .callHttpClient({