feat: manually create customer access link for offer and update status

addresses #869eea8d7
This commit is contained in:
Björn Fromme
2026-08-24 09:19:16 +02:00
parent 7c5f6dd5ef
commit 48db290625
6 changed files with 323 additions and 7 deletions
@@ -0,0 +1,13 @@
{% extends 'htmx_confirmation_modal.html.twig' %}
{% block title %}Zugangslink manuell erzeugen{% endblock %}
{% block content %}
<div>
Möchtest du den Zugangslink für <em>{{ booking.groupName }}</em> jetzt erzeugen?
Die Buchung wechselt dadurch in den Status „Offen“ — es wird aber keine E-Mail an den
Kunden verschickt.
</div>
{% endblock %}
{% block button_confirm %}Link erzeugen{% endblock %}
@@ -184,13 +184,22 @@
Das Angebot wurde dem Kunden noch nicht zugestellt. Beim Versand wird der Zugangslink
erzeugt und die Buchung wartet anschließend auf die Annahme durch den Kunden.
</p>
<button type="button"
class="button button--primary button--small"
hx-get="{{ path('app_admin_accommodationbooking_send_offer', { id: booking.id }) }}"
hx-target="body"
hx-swap="beforeend">
Angebot per E-Mail senden
</button>
<div class="flex items-center gap-2">
<button type="button"
class="button button--primary button--small"
hx-get="{{ path('app_admin_accommodationbooking_send_offer', { id: booking.id }) }}"
hx-target="body"
hx-swap="beforeend">
Angebot per E-Mail senden
</button>
<button type="button"
class="button button--secondary button--small"
hx-get="{{ path('app_admin_accommodationbooking_generate_access_link', { id: booking.id }) }}"
hx-target="body"
hx-swap="beforeend">
Link erzeugen
</button>
</div>
</div>
{% endif %}