Files
Ferme/frontend/services/dto/reception-data.ts

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
}