feat: implement MANUAL_ONLY status for bookings and update related logic

This commit is contained in:
Marshal
2026-08-25 22:01:03 +00:00
parent b926a3116e
commit 29371b0b39
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">