CASH-1952
CASH-1952 use PascalCase instead of camel
This commit is contained in:
parent
8e61e33f73
commit
c35f21452e
1 changed files with 7 additions and 7 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue