{% extends "ChakaStatistiquesBundle:base.html.twig" %} {% block pagetitle %}Statistiques des fax {{ titre }}{% endblock %} {% block body %}
{% include "ChakaStatistiquesBundle:Statistiques:form_stats.html.twig" %}
{% include "ChakaStatistiquesBundle:Statistiques:form_export.html.twig" %}
{% set total_fax = 0 %} {% set total_fax_recus = 0 %} {% set total_fax_envoyes = 0 %} {% set total_fax_non_envoyes = 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_fax = total_fax+stats.total_fax %} {% set total_fax_recus = total_fax_recus+stats.total_fax_recus %} {% set total_fax_envoyes = total_fax_envoyes+stats.total_fax_envoye %} {% set total_fax_non_envoyes =total_fax_non_envoyes+stats.total_fax_non_envoye %} {% endfor %}
{% if sortie.criteres == 1 %} HORAIRE {% elseif sortie.criteres == 2 %} JOUR {% elseif sortie.criteres == 3 %} MOIS {% else %} DATE {% endif %} DNIS TOTAL FAX TOTAL FAX RECU TOTAL FAX ENVOYE TOTAL FAX NON ENVOYE
{{ stats.date_stat|date('d-m-Y') }} {{ stats.date_stat|date("d") }}{{ stats.annee }}{{ stats.date_stat|date('d-m-Y') }}{{ stats.dnis }} {{ stats.total_fax }} {{ stats.total_fax_recus }} {{ stats.total_fax_envoye }} {{ stats.total_fax_non_envoye }}
TOTAUX {{ total_fax|number_format(0,'.',' ') }} {{ total_fax_recus|number_format(0,'.',' ') }} {{ total_fax_envoyes|number_format(0,'.',' ') }} {{ total_fax_non_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 %}