Merge branch 'freight_feature/profile' of github.com:Tria-plc/edr-platform into freight_feature/profile

This commit is contained in:
marshal
2026-06-24 04:33:15 +03:00
38 changed files with 1769 additions and 363 deletions

View File

@@ -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 {