Merge pull request #1415 from Tria-plc/freight_feature/usermanagement

feat: implement MANUAL_ONLY status for bookings and update related logic
This commit is contained in:
marshal
2026-08-26 01:02:18 +03:00
committed by GitHub
8 changed files with 257 additions and 36 deletions

View File

@@ -35,6 +35,8 @@ export function SchedulingStatusBadge({ status }: { status?: string | null }) {
ELIGIBLE: "blue",
SCHEDULED: "indigo",
DISPATCHED: "edr-green",
WAITING_FOR_WAGON: "yellow",
MANUAL_ONLY: "orange",
};
return (
<Badge variant="light" color={colors[status] ?? "gray"} size="sm">