feat: additional confirmation cycle and status for groups inquiries
This commit is contained in:
@@ -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',
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user