feat : affichage et modification expédition et modification bouton valider

This commit is contained in:
2026-02-26 14:19:12 +01:00
parent 47cac04257
commit 4b93c100b0
11 changed files with 662 additions and 14 deletions

View File

@@ -4,3 +4,11 @@ export interface WeightData {
weighedAt: string | null
type : string | null
}
export interface WeightEntryData {
id?: number
type: 'gross' | 'tare'
dsd: number | null
weight: number | null
weighedAt: string | null
}