{% set hotel = displayHotelDetails(booking.contractId) %}

Réservation envoyée

Merci pour votre réservation !
Votre réservation a été envoyé avec succès.

Informations sur le voucher

Numéro de réservation {{ booking.bookingNumber }}
Numéro de voucher {{ booking.voucherNumber }}
Date d'émission {{ booking.createdAt|date('Y-m-d H:m:s') }}

Informations sur l'hôtel

Nom de l'hôtel {{ booking.hotelName }}
Nombre étoile {{ hotel['category'] ?? 'aucun' }}
Ville {{ hotel['cityName'] ?? 'aucun' }}
Téléphone {{ hotel['contactPhone'] ?? 'aucun' }}
Email {{ hotel['contactEmail'] ?? 'aucun' }}
Check-in {{ booking.beginDate|date('Y-m-d') }}
Check-out {{ booking.endDate|date('Y-m-d') }}
Nuitée(s) {{ booking.numberOfStay }}

Détails de la pension

Type de pension {{ booking.pensionName }}

Détails de la chambre

Type de chambre {{ booking.roomsName }}
Nombre de personnes

Informations client

Nom & Prénom {{ booking.getClientFullName() }}
Adresse Email {{ booking.email }}
Télephone {{ booking.phone }}
Pays {{ booking.country ?? 'aucun' }}
Ville {{ booking.city ?? 'aucun' }}
Adresse {{ booking.address ?? 'aucun' }}

Mode de paiement

{% if booking.paymentType == 1 %} {% endif %}
Paiement {{ displayPaymentType(booking.paymentType) }}
Télephone agence {{ displayAgencyCoordinate(booking.agencyId)['phone'] ?? 'aucun'}}