pass in 0 if deductible is null
This commit is contained in:
parent
f82585a497
commit
3025154e19
1 changed files with 1 additions and 1 deletions
|
|
@ -941,7 +941,7 @@ export const useMainStore = defineStore({
|
||||||
}
|
}
|
||||||
const ctuToUse = this.order.serviceLocation.zipCodeCtu;
|
const ctuToUse = this.order.serviceLocation.zipCodeCtu;
|
||||||
const availableLineItemsFormattedForRequest = getLineItemQueryStringForPricing(availableLineItems);
|
const availableLineItemsFormattedForRequest = getLineItemQueryStringForPricing(availableLineItems);
|
||||||
const deductibleToUse = this.order.currentDeductible;
|
const deductibleToUse = this.order?.currentDeductible ?? 0;
|
||||||
|
|
||||||
let queryString =
|
let queryString =
|
||||||
`ParentAccountNumber=${this.order.accountNumber}`
|
`ParentAccountNumber=${this.order.accountNumber}`
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue