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

{{entite.nom}}

{% endif %}

Etat journalier des transactions par point de services

Du: {{dateDebut}} au: {{dateFin}}

{% if agence is not empty %} Point de service: {{agence.nom}} {% endif %} {% if distributeur is not empty %} Distributeur: {{distributeur.nom}} {% endif %} {% if codeCaisse is not empty %} Caisse: {{codeCaisse}} {% endif %}
Nombre: {{ agregat.nombreTotal|number_format(0, '.', ' ') }}

Montant total: {{ agregat.montantTotal|number_format(0, '.', ' ') }} {{ entite.devise }}


{% for transaction in transactions %} {% if (transaction.operation == "DEBIT") %} {% else %} {% endif %} {% endfor %}
Encaissements Décaissements Comm PS
Date N° Transaction Appro Envoi Paiement Remb Paiement Comm Remb Comm
{{ transaction.dateCreation|date('d/m/Y H:i') }} {{ transaction.numTransaction }} {{ transaction.appro == 1 ? transaction.montant|number_format(0, '.', ' ') : ''}} {{ transaction.appro == 0 ? transaction.montant|number_format(0, '.', ' ') : ''}} {{ transaction.netCaisse|number_format(0, '.', ' ') }} {{ transaction.frais|number_format(0, '.', ' ') }}
{{ transaction.dateCreation|date('d/m/Y H:i') }} {{ transaction.numTransaction }} {{transaction.annulation == 0 and transaction.remboursement == 0 ? transaction.montant|number_format(0, '.', ' ') : '' }} {{transaction.annulation == 1 or transaction.remboursement == 1 ? transaction.montant|number_format(0, '.', ' ') : '' }} {{ transaction.remboursement == 0 ? transaction.netCaisse|number_format(0, '.', ' ') : '' }} {{ transaction.frais|number_format(0, '.', ' ') }} {{transaction.remboursement == 1 ? transaction.netCaisse|number_format(0, '.', ' ') : ''}} {{transaction.remboursement == 1 ? transaction.frais|number_format(0, '.', ' ') : ''}}
TOTAUX {{ agregatEnc.montantTotal|number_format(0, '.', ' ') }} {{ agregatDec.montantTotal|number_format(0, '.', ' ') }} Net commission: {{ agregat.netCaisse|number_format(0, '.', ' ') }} Total Frais:{{ agregat.totalCommission|number_format(0, '.', ' ') }}
SOLDE {{solde|number_format(0, '.', ' ')}}
{% endblock %} {% endblock %}