{% extends 'base_stat.html.twig' %} {% import 'macros/macro.html.twig' as macro %} {% block title %} {{ parent() }} Statistiques des articles en location BE {% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %} {{ parent() }}

Statistiques de CA sur les articles en location du BE

{% for article in articles %} {% endfor %}
Famille Article Date création Qté total CA HT total Qté en {{ yearCurrent }} CA HT en {{ yearCurrent }} Prix achat Frais
{{ article.subFamilyName }}
{{ article.id}}
{{ article.createdAt|date('d/m/Y') }} {{ article.quantityTotal }} {{ article.caTotal|number_format(2, ',', ' ') }} € {{ article.quantityPeriod }} {% if article.caTotalPeriod != 0 %} {{ article.caTotalPeriod|number_format(2, ',', ' ') }} € {% endif %} {{ article.purchasePrice|number_format(2, ',', ' ') }} € {% if article.frais %} {{ article.frais }} € {% endif %}
{% endblock %} {% block modal %} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}