{% extends '@kohinos/bundles/SonataAdminBundle/standard_layout.html.twig' %} {% block sonata_page_content %}

Statistiques SSA - {{ ssa.name }}

{{ selectedMonth|date('m/Y') }} Editer la caisse

Paiements adherent vers prestataire ce mois: {{ fluxCount }}

{% if ssa.distributionMode == constant('App\\Entity\\SolidoumeParameter::DISTRIBUTION_MODE_TIERS') %}

Participants par palier ({{ selectedMonth|date('m/Y') }})

{% if tiersChart is not null %} {{ render_chart(tiersChart) }} {% else %}

Aucun participant avec cotisation SSA sur ce mois pour les paliers.

{% endif %}

Detail des paliers

{% for tier in tiersStats %} {% endfor %}
Palier Participants
{{ tier.label }} {{ tier.count }}
{% endif %}

Evolution journaliere des paiements adherent vers prestataire ({{ selectedMonth|date('m/Y') }})

{{ render_chart(transactionsChart) }}
{% if cotisationDiffChart is defined and cotisationDiffChart is not null %}

Cotisations payées vs recommandées - 12 derniers mois

{{ render_chart(cotisationDiffChart) }}

Detail mensuel cotisation

{% for row in cotisationDiffStats %} {% set diff = row.avgDiff %} {% else %} {% endfor %}
Mois Payé Recommandé Diff. moy.
{{ row.month }} {{ row.totalPaid|number_format(2, ',', ' ') }}€ {{ row.totalRecommended|number_format(2, ',', ' ') }}€ {% if diff == 0 %} = 0,00€ {% elseif diff > 0 %} +{{ diff|number_format(2, ',', ' ') }}€ {% else %} −{{ (diff * -1)|number_format(2, ',', ' ') }}€ {% endif %}
Aucune donnee
{% endif %}

Top 10 prestataires beneficiaires SSA ({{ selectedMonth|date('m/Y') }})

{% if topPrestatairesChart is not null %} {{ render_chart(topPrestatairesChart) }} {% else %}

Aucune transaction adherent vers prestataire ce mois.

{% endif %}

Detail top 10

{% for row in topPrestataires %} {% else %} {% endfor %}
Prestataire Montant Volume
{{ row.name }} {{ row.amount|number_format(2, ',', ' ') }} EUR {{ row.volume }}
Aucune donnee
{% endblock %}