WIP jordan
This commit is contained in:
30
app/composables/useAutoQuoteDraft.ts
Normal file
30
app/composables/useAutoQuoteDraft.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
import type { AutoQuoteDraft } from '~/types/auto-quote-intake'
|
||||
|
||||
export function emptyAutoQuoteDraft(): AutoQuoteDraft {
|
||||
return {
|
||||
quoteMode: null,
|
||||
segment: null,
|
||||
client: {
|
||||
fullName: '',
|
||||
email: '',
|
||||
phone: '',
|
||||
documentId: '',
|
||||
organizationName: ''
|
||||
},
|
||||
vehicle: {
|
||||
subRamo: '',
|
||||
clase: '',
|
||||
uso: '',
|
||||
marca: '',
|
||||
modelo: '',
|
||||
placa: '',
|
||||
year: '',
|
||||
capacidadPasajeros: '',
|
||||
valorVehiculo: ''
|
||||
},
|
||||
solicit: {
|
||||
carrierIds: [],
|
||||
planIds: []
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user