Merge pull request #441 from Safelite/feature/richardson/SSR-364
eon of 0 (hardcoded) failed price service call
This commit is contained in:
commit
db667d1229
1 changed files with 9 additions and 9 deletions
|
|
@ -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({
|
||||
|
|
|
|||
Loading…
Reference in a new issue