{% extends 'base.html.twig' %} {% block body %}
| EMPLACEMENT | REF | DESIGNATION | QTT INITIALE | QTT ENTREE | QTT SORTIE | QTT FINALE | PRIX | TOTAL | |
|---|---|---|---|---|---|---|---|---|---|
| {{ eproduit.emplacement }} | {% if eproduit.reference %}{{ eproduit.reference }}{% else %}0{% endif %} | {{ eproduit.titre }} | {{ eproduit.getQuantiteInitiale()|number_format(2, ',', ' ') }} | {{ eproduit.getQuantiteEntree()|number_format(2, ',', ' ') }} | {{ eproduit.getQuantiteSortie()|number_format(2, ',', ' ') }} | {{ eproduit.getQuantite()|number_format(2, ',', ' ') }} | {{ eproduit.getPrixAchat()|number_format(2, ',', ' ') }} | {{ (eproduit.getPrixAchat()*eproduit.getQuantite())|number_format(2, ',', ' ') }} | |
| TOTAUX | {{ etatStock.nombreProduit }} | {{ total_qtt_initiale|number_format(2, ',', ' ') }} | {{ total_qtt_entree|number_format(2, ',', ' ') }} | {{ total_qtt_sortie|number_format(2, ',', ' ') }} | {{ total_qtt_actuelle|number_format(2, ',', ' ') }} | {{ etatStock.prixAchatTotal|number_format(2, ',', ' ') }} |