17 lines
351 B
TypeScript
17 lines
351 B
TypeScript
export interface ReceptionData {
|
|
id: number
|
|
licensePlate: string | null
|
|
weights?: WeightEntryData[] | null
|
|
receptionDate: string
|
|
currentStep: number
|
|
isValid: boolean
|
|
}
|
|
|
|
export interface WeightEntryData {
|
|
id?: number
|
|
type: 'gross' | 'tare'
|
|
dsd: number | null
|
|
weight: number | null
|
|
weighedAt: string | null
|
|
}
|