diff --git a/src/store/index.js b/src/store/index.js index 684aad2ce..d8306ad09 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -2247,7 +2247,7 @@ export const actions = { // TODO: Insurance pricing...`ParentAccountNumber=${context.getters.order.payment.parentAccountNumber}` let queryString = - `ParentAccountNumber=${applicationConfig.CASH_PARENT_ACCOUNT_NUMBER}` + + `ParentAccountNumber=${context.getters.order.payment.parentAccountNumber}` + `&CTU=${ctuToUse}` + `&CarId=${vehicle.carId}` + `&Make=${vehicle.make}` + @@ -2311,7 +2311,7 @@ export const actions = { let queryString = ""; if (appointmentType == "Mobile") { queryString = - `ParentAccountNumber=${applicationConfig.CASH_PARENT_ACCOUNT_NUMBER}` + + `ParentAccountNumber=${context.getters.order.payment.parentAccountNumber}` + `&BillToAccountNumber=${billToAccountNumber}` + `&ProviderNumber=${providerNumber}` + `&AppointmentType=${appointmentType}` + @@ -2321,7 +2321,7 @@ export const actions = { `&${pricedLineItemsFormattedForRequest}`; } else { queryString = - `ParentAccountNumber=${applicationConfig.CASH_PARENT_ACCOUNT_NUMBER}` + + `ParentAccountNumber=${context.getters.order.payment.parentAccountNumber}` + `&BillToAccountNumber=${billToAccountNumber}` + `&ProviderNumber=${providerNumber}` + `&AppointmentType=${appointmentType}` +