{% extends 'base.html.twig' %} {% block body %}

FILTRES
{{ form_widget(form.categorie, {'attr': {'class': 'form-control'}}) }}
STOCK ACTIF ({{ produits|length }})
Réparer
{% set nbr = 0 %} {% set total_ht = 0 %} {% for produit in produits %} {% set nbr = (nbr + 1) %} {% set total_ht = (total_ht + (produit.prixAchat * produit.quantiteStock)) %} {% endfor %}
EMP REF DESIGNATION QTT PU TOTAL
{{ produit.emplacement }} {{ produit.reference }} {{ produit.titre }} {{ produit.quantiteStock|number_format(2, ',', ' ') }} {{ produit.prixAchat|number_format(2, ',', ' ') }} {{ (produit.prixAchat * produit.quantiteStock)|number_format(2, ',', ' ') }}
TOTAUX {{ nbr|number_format(2, ',', ' ') }} {{ total_ht|number_format(2, ',', ' ') }}
{% endblock %}