mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-30 01:48:12 +00:00
Merge pull request #431 from Tria-plc/freight/feature/first_mile_invoice
Freight/feature/first mile invoice
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user