This commit is contained in:
natib21
2026-07-03 19:44:27 +00:00
parent a1dfb439ff
commit 8d17d9111e
5 changed files with 151 additions and 34 deletions

View File

@@ -23,7 +23,13 @@ export interface LastMileBooking {
destinationYard?: { id: string; name?: string; label?: string } | null;
cargoType?: { id: string; name?: string; label?: string; cargoTypeName?: string } | null;
/** Container lines — total container count drives how many trucks are needed. */
bookingContainers?: Array<{ id: string; quantity: number }>;
bookingContainers?: Array<{
id: string;
quantity: number;
containerNumber?: string | null;
containerSize?: string | null;
containerType?: { id: string; name?: string; label?: string; code?: string } | null;
}>;
}
export interface LastMileVehicle {