feat: additional confirmation cycle and status for groups inquiries

This commit is contained in:
Björn Fromme
2026-08-18 12:48:17 +02:00
parent 5045846eed
commit 8dee65d0dc
28 changed files with 677 additions and 95 deletions
@@ -6,7 +6,8 @@ enum AccommodationBookingStatus: string
{
case Draft = 'draft';
case Open = 'open';
case Accepted = 'accepted';
case Received = 'received';
case Confirmed = 'confirmed';
case Discarded = 'discarded';
public function label(): string
@@ -14,7 +15,8 @@ enum AccommodationBookingStatus: string
return match ($this) {
self::Draft => 'Entwurf',
self::Open => 'Offen',
self::Accepted => 'Bestätigt',
self::Received => 'Eingegangen',
self::Confirmed => 'Bestätigt',
self::Discarded => 'Absage',
};
}