Moyen de paiement :
Paiement en ligne / autre
Montant total :
{{ registration.totalAmount|number_format(2, ',', ' ') }} €
État :
{% if registration.state == constant('App\\Entity\\ManifestationRegistration::STATE_CONFIRM') %}
Confirmée
{% elseif registration.state == constant('App\\Entity\\ManifestationRegistration::STATE_PAYMENT_WAITING') %}
En attente de paiement
{% else %}
Annulée / Refusée
{% endif %}
Reste à payer :
{{ registration.totalAmount|number_format(2, ',', ' ') }} €
{% if registration.products|length > 0 %}
Produits sélectionnés
{% for item in registration.products %}
Produit : {{ item.product.title }}
Quantité : {{ item.quantity }}
{% if item.optionProduct %}
Option : {{ item.optionProduct.name }}
{% endif %}
Prix : {{ item.price|number_format(2, ',', ' ') }} €
{% endfor %}
{% endif %}
{% if registration.fields|length > 0 %}
Champs remplis
{% for field in registration.fields %}
{{ field.field.label }}
{% if field.filePath %}
Télécharger le fichier
{% elseif field.value %}
{{ field.value }}
{% else %}
Non renseigné
{% endif %}
{% endfor %}
{% endif %}