Merge branch 'main' of github.com:Tria-plc/edr-platform into quick-fix

This commit is contained in:
Stephanos A
2026-07-18 19:01:23 +03:00

View File

@@ -9,7 +9,10 @@ import { formatDateTime } from '@/lib/utils';
interface ScheduleOption { id: string; label: string; }
interface ScheduleOption { id: string; label: string; }
interface PassengersReport {
schedule: { id: string; trainName: string; origin: string; destination: string; departureAt: string; arrivalAt: string; };
schedule: { id: string; trainName: string; origin: string; destination: string; departureAt: string; arrivalAt: string; };
summary: { totalSeats: number; totalPassengers: number; occupancyRate: number };
byCoach: { coachNumber: string; coachType: string; totalSeats: number; booked: number; occupancyRate: number }[];