{% extends 'base.html.twig' %} {% block body %} {##} {% block content %}
{% if entite is not empty %}

{{entite.nom}}

{% endif %} {% if agence is not empty %}

AGENCE: {{agence}}

{% endif %} {% if distributeur is not empty %}

Distributeur: {{distributeur.nom}}

{% endif %}

Versement cash {{datetxt}}

Nombre: {{ nombre|number_format(0, '', ' ') }} Montant: {{ montant|number_format(0, '', ' ') }} {% if entite is not empty %} {{entite.devise}}{% endif %}

{% for appro in appros %} {% if appro.status == 0 or appro.status == 3 %} {% elseif appro.status == 1 %} {% elseif appro.status == 2 %} {% elseif appro.status == 3 %} {% else %} {% endif %} {% endfor %}
Date de création Montant Code agence Code caisse Numéro caisse Statut Date de validation Checker
{{ appro.dateCreation|date('d/m/Y H:i') }} {{ appro.agence ? appro.agence.code : '' }} {{ appro.caisse ? appro.caisse.code : '' }} {{ appro.caisse ? appro.caisse.numero : appro.agence.nom }} {{ appro.montant|number_format(0, '', ' ') }}En attente de validationValidéRejetéApprouvé{{ appro.dateModification|date('d/m/Y H:i') }} {{ appro.checker }}
{% endblock %} {% endblock %}