Merge branch 'refs/heads/develop' into feat/271-expedition-etape-1

# Conflicts:
#	CHANGELOG.md
This commit is contained in:
2026-02-12 08:18:17 +01:00
11 changed files with 575 additions and 4 deletions

View File

@@ -41,6 +41,14 @@ export interface WeightEntryData {
weighedAt: string | null
}
export interface WeightFormData {
id: number
weight: number
type: 'gross' | 'tare'
}
export type ReceptionPayload = {
licensePlate?: string | null
receptionDate?: string
@@ -72,3 +80,14 @@ export type ReceptionFormData = {
driverId: string
vehicleId: string
}
export type ReceptionFormWeight = {
weights: WeightFormData[]
}
export interface ReceptionUpdatePayload {
weights: {
id: number
weight: number
}[]
}