mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-27 15:30:56 +00:00
Merge branch 'freight_feature/profile' of github.com:Tria-plc/edr-platform into freight_feature/profile
This commit is contained in:
@@ -717,6 +717,10 @@ export interface CreateBookingOrderLineDto {
|
||||
/** Null for bulk/break-bulk; the container type id for container contracts. */
|
||||
containerTypeId?: string | null;
|
||||
quantity: number;
|
||||
/** How much of this line is hazardous (≤ quantity). Defaults to 0. */
|
||||
hazardousQuantity?: number;
|
||||
/** How much of this line is refrigerated (≤ quantity). Defaults to 0. */
|
||||
reeferQuantity?: number;
|
||||
}
|
||||
|
||||
/** Per-route contracted / ordered / remaining pool line (multi-route contracts). */
|
||||
@@ -731,6 +735,8 @@ export interface ContractRouteLine {
|
||||
contractedQuantity: number;
|
||||
orderedQuantity: number;
|
||||
remainingQuantity: number;
|
||||
/** Road distance (km) for this route; used to bill road orders. Null for rail-only. */
|
||||
km?: number | null;
|
||||
}
|
||||
|
||||
export interface CreateBookingOrderDto {
|
||||
@@ -748,6 +754,8 @@ export interface IBookingOrderLine {
|
||||
containerTypeId?: string | null;
|
||||
containerTypeName?: string | null;
|
||||
quantity: number;
|
||||
hazardousQuantity?: number;
|
||||
reeferQuantity?: number;
|
||||
}
|
||||
|
||||
export interface IBookingOrder {
|
||||
|
||||
Reference in New Issue
Block a user