CASH-1952

CASH-1952 use PascalCase instead of camel
This commit is contained in:
CarlNation 2026-01-10 15:53:29 -05:00
parent 8e61e33f73
commit c35f21452e

View file

@ -2374,17 +2374,17 @@ export const useMainStore = defineStore({
method: endpoints.TaxOrderItems.method,
endpoint: endpoints.TaxOrderItems.url,
payload: {
parentAccountNumber: this.order.parentAccountNumber,
billToAccountNumber: this.billToAccountNumber,
providerNumber: this.providerNumber,
appointmentType: appointmentType,
pricedLineItems: getLineItemsFlattened(pricedLineItems),
serviceLocation: {
ParentAccountNumber: this.order.parentAccountNumber,
BillToAccountNumber: this.billToAccountNumber,
ProviderNumber: this.providerNumber,
AppointmentType: appointmentType,
PricedLineItems: getLineItemsFlattened(pricedLineItems),
ServiceLocation: {
city: isMobileApt ? serviceLocationCity : null,
state: isMobileApt ? serviceLocationState : null,
zipCode: isMobileApt ? serviceLocationZipCode : null,
},
serverData: lineItemServerData ? lineItemServerData : "",
ServerData: lineItemServerData ? lineItemServerData : "",
},
}).then((response) => {
this.order.lineItems.serverData = response.data.serverData;