feat(booking): Implement train schedule selection and update booking data structures

This commit is contained in:
ghost2023
2026-06-13 11:26:57 +03:00
parent 407cf3ed1f
commit 9aecbb6508
11 changed files with 798 additions and 543 deletions

View File

@@ -463,9 +463,9 @@ export interface CreateBookingContainerDto {
export interface CreateBookingDto {
reference?: string;
customerId?: string;
companyId?: string;
trainId?: string;
trainScheduleId?: string;
scheduledDate: string;
contractType: "NEW" | "RENEWAL";
previousContractId?: string;