implement empty-container return service: add return quantity handling, update related DTOs, services, and UI components

This commit is contained in:
Marshal
2026-07-15 22:48:04 +00:00
parent fc44eee25e
commit 234a74e812
20 changed files with 324 additions and 20 deletions

View File

@@ -733,6 +733,11 @@ export interface CreateBookingContainerLineDto {
quantity: number;
hazardousQuantity?: number;
reeferQuantity?: number;
/**
* How many units ship with empty-container return (≤ quantity). Only allowed
* when the contract was created WITH_RETURN (container freight only).
*/
returnQuantity?: number;
units: CreateContainerUnitDto[];
}