feat: wire up the create booking form

This commit is contained in:
ghost2023
2026-05-23 11:54:13 +03:00
parent 8a5652d7d9
commit dc41da3731
10 changed files with 534 additions and 27 deletions

View File

@@ -155,4 +155,14 @@ export interface CreateBookingDto {
tradeDirection: "IMPORT" | "EXPORT";
paymentCurrency: string;
allowConsolidation?: boolean;
startDate?: string;
endDate?: string;
financialTerms?: string;
containers?: Array<{
type: "20FT" | "40FT";
qty: number;
vgm: number;
}>;
}