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, method: endpoints.TaxOrderItems.method,
endpoint: endpoints.TaxOrderItems.url, endpoint: endpoints.TaxOrderItems.url,
payload: { payload: {
parentAccountNumber: this.order.parentAccountNumber, ParentAccountNumber: this.order.parentAccountNumber,
billToAccountNumber: this.billToAccountNumber, BillToAccountNumber: this.billToAccountNumber,
providerNumber: this.providerNumber, ProviderNumber: this.providerNumber,
appointmentType: appointmentType, AppointmentType: appointmentType,
pricedLineItems: getLineItemsFlattened(pricedLineItems), PricedLineItems: getLineItemsFlattened(pricedLineItems),
serviceLocation: { ServiceLocation: {
city: isMobileApt ? serviceLocationCity : null, city: isMobileApt ? serviceLocationCity : null,
state: isMobileApt ? serviceLocationState : null, state: isMobileApt ? serviceLocationState : null,
zipCode: isMobileApt ? serviceLocationZipCode : null, zipCode: isMobileApt ? serviceLocationZipCode : null,
}, },
serverData: lineItemServerData ? lineItemServerData : "", ServerData: lineItemServerData ? lineItemServerData : "",
}, },
}).then((response) => { }).then((response) => {
this.order.lineItems.serverData = response.data.serverData; this.order.lineItems.serverData = response.data.serverData;