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

{{entite.nom}}

{% endif %}

Etat journalier des {{encRequest == true ? "encaissements": "décaissements"}} 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 }}


{% if agence is empty %} {% endif %} {% if codeCaisse is empty %} {% endif %} {% for transaction in transactions %} {% if agence is empty %} {% endif %} {% if codeCaisse is empty %} {% endif %} {% if transaction.appro == 0 %} {% else %} {% endif %} {% endfor %} {% if agence is empty %} {% endif %} {% if codeCaisse is empty %} {% endif %}
Date N° TransactionPOS Caisse Type Service Partenaire Montant TTC {{entite.devise}} Frais Net commission
{{ transaction.dateCreation|date('d/m/Y H:i') }} {{ transaction.numTransaction }}{{transaction.caisse ? 'wallet' in transaction.caisse.code ? '': transaction.caisse.pointDeVente.nom : ''}} {{transaction.caisse ? 'wallet' in transaction.caisse.code ? 'App mobile': transaction.caisse.code : ''}} {{encRequest == true ? "Envoi": transaction.annulation == 0 and transaction.remboursement == 0 ? "Paiement" : transaction.annulation == 1 ? "Annulation" : "Remboursement"}} Appro {{ transaction.service is not null ? transaction.service.nom : ""}} {{ transaction.partenaire is not null ? transaction.partenaire.nom : '' }} {{ transaction.montant|number_format(0, '.', ' ') }} {{ transaction.frais|number_format(0, '.', ' ') }} {{ transaction.netCaisse|number_format(0, '.', ' ') }}
TOTAUX {{ agregat.montantTotal|number_format(0, '.', ' ') }} {{agregat.totalCommission|number_format(0, '.', ' ') }} {{ agregat.netCaisse|number_format(0, '.', ' ') }}
{% endblock %} {% endblock %}