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,
|
||||
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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue