{% extends "ChakaStatistiquesBundle:base.html.twig" %} {% block pagetitle %}Statistiques des SMS {{ titre }}{% endblock %} {% block body %}
{% include "ChakaStatistiquesBundle:Statistiques:form_stats.html.twig" %}
{% include "ChakaStatistiquesBundle:Statistiques:form_export.html.twig" %}
{% set total_sms_recus = 0 %} {% set total_sms_envoyes = 0 %} {% set total_sms_delivres = 0 %} {% set total_sms_echoue = 0 %} {% set total_sms_rejete = 0 %} {% set total_sms_en_cours = 0 %} {% for stats in statistiques %} {% if sortie.criteres == 1 %} {% elseif sortie.criteres == 2 %} {% elseif sortie.criteres == 3 %} {% set current_date = "now"|date('Y') %} {% elseif sortie.criteres %} {% endif %} {% set total_sms_recus = total_sms_recus + stats.total_sms_recus %} {% set total_sms_envoyes = total_sms_envoyes + stats.total_sms_envoyes %} {% set total_sms_delivres = total_sms_delivres + stats.total_sms_delivres %} {% set total_sms_echoue = total_sms_echoue + stats.total_sms_echoue %} {% set total_sms_rejete = total_sms_rejete + stats.total_sms_rejete %} {% set total_sms_en_cours = total_sms_en_cours + stats.total_sms_en_cours %} {% endfor %}
{% if sortie.criteres == 1 %} HORAIRE {% elseif sortie.criteres == 2 %} JOUR {% elseif sortie.criteres == 3 %} MOIS {% else %} DATE {% endif %} SMS RECUS SMS ENVOYÉS
DÉLIVRÉS ÉCHOUÉS REJETÉ EN COURS TOTAL
{{ stats.date_stat|date('d-m-Y') }} {{ stats.date_stat|date("d") }}{{ stats.annee }}{{ stats.date_stat|date('d-m-Y') }}{{ stats.total_sms_recus }} {{ stats.total_sms_delivres }} {{ stats.total_sms_echoue }} {{ stats.total_sms_rejete }} {{ stats.total_sms_en_cours }} {{ stats.total_sms_envoyes }}
TOTAUX {{ total_sms_recus|number_format(0,'.',' ') }} {{ total_sms_delivres|number_format(0,'.',' ') }} {{ total_sms_echoue|number_format(0,'.',' ') }} {{ total_sms_rejete|number_format(0,'.',' ') }} {{ total_sms_en_cours|number_format(0,'.',' ') }} {{ total_sms_envoyes|number_format(0,'.',' ') }}
{#{% include "ChakaStatsBundle:Statistiques:charts.html.twig" %}#}
{% endblock %} {% block javascripts %} {#{% include "ChakaStatsBundle:Statistiques:charts_js.html.twig" %}#} {% include "ChakaStatistiquesBundle:Statistiques:form_stats_scripts.html.twig" %} {% endblock %}