fix issue

This commit is contained in:
Marshal
2026-08-27 20:58:44 +00:00
parent 1626903192
commit 8b8870e85e
8 changed files with 327 additions and 63 deletions

View File

@@ -179,6 +179,13 @@ export interface IContractCargoScope {
code?: string | null;
cargoTypeName?: string | null;
unitOfMeasure?: string | null;
/**
* Most tons of this cargo one wagon may carry, across the cargo's allowed
* wagon types (rated capacity, capped by the type's loading limit). Lets
* the booking forms reject a wagon count whose even share overloads a
* wagon before the server does. Null when no wagon type is configured.
*/
maxTonsPerWagon?: number | null;
} | null;
cargoFreeText?: string | null;
/**