{% extends 'layouts/admin_layout.html.twig' %} {% block title %}Validation Paiement #{{ paiement.id }} {% endblock %} {% block content %}
Validation d'un paiement en attente

Détails de la transaction

{{ paiement.souscription.client.fullName }}

{{ paiement.souscription.lot.projet.nom }} - Lot {{ paiement.souscription.lot.numeroLot }}

{{ paiement.montant|number_format(0, ',', ' ') }} F.CFA

{{ paiement.referenceTransaction ?: (paiement.bon ? paiement.bon.referenceBon : 'Génération auto à la validation') }}

{{ paiement.moyenPaiement.value }}

{# --- SECTION PREUVE DE PAIEMENT --- #}
Justificatif de paiement
{% if preuve %}
{% if preuve.typeMedia == 'IMAGE' %} {% else %}

{{ preuve.nomDocument }}

{% endif %}
{% else %}
Aucun document joint
{% endif %}
{# --- FIN SECTION PREUVE --- #}
Confirmation requise

En cliquant sur le bouton ci-dessous, vous confirmez avoir reçu les fonds. Le compte du client sera crédité et les échéances seront mises à jour.

Annuler
{% endblock %}