fix registerClaim payload
This commit is contained in:
parent
6667fdce77
commit
81397697f3
1 changed files with 2 additions and 2 deletions
|
|
@ -476,7 +476,7 @@ export const useMainStore = defineStore({
|
||||||
safelitePolicy: {
|
safelitePolicy: {
|
||||||
policies: []
|
policies: []
|
||||||
},
|
},
|
||||||
actualDeductible: this.order.currentDeductible
|
actualDeductible: this.order.currentDeductible?.toString() ?? ''
|
||||||
},
|
},
|
||||||
lossInfo: {
|
lossInfo: {
|
||||||
dateOfLoss: this.order.policy.dateOfLoss,
|
dateOfLoss: this.order.policy.dateOfLoss,
|
||||||
|
|
@ -486,7 +486,7 @@ export const useMainStore = defineStore({
|
||||||
country: 'US' // TODO set from store
|
country: 'US' // TODO set from store
|
||||||
},
|
},
|
||||||
vehicle: {
|
vehicle: {
|
||||||
id: this.order.vehicle.id?.toString() ?? '',
|
id: this.order.vehicle.carId?.toString() ?? '',
|
||||||
year: this.order.vehicle.year?.toString() ?? '',
|
year: this.order.vehicle.year?.toString() ?? '',
|
||||||
make: this.order.vehicle.make,
|
make: this.order.vehicle.make,
|
||||||
model: this.order.vehicle.model,
|
model: this.order.vehicle.model,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue