{% extends 'base.html.twig' %} {% block title %}Journal des stocks - {{ parent() }} {% endblock %} {% block body %}

Journal des mouvements de stock

Nouveau mouvement
Reset
{% if mouvements %}
{% for mouvement in mouvements %} {% endfor %}
Date et heure Référence produit Description Type Quantité Commentaire Actions
{{ mouvement.dateCourte }}
{{ mouvement.heure }}
{{ mouvement.produit.reference }} {{ mouvement.produit.description }} {{ mouvement.typeLabel }} {{ mouvement.quantiteFormatee }} {% if mouvement.commentaire %} {{ mouvement.commentaire|slice(0, 30) }}{{ mouvement.commentaire|length > 30 ? '...' : '' }} {% else %} - {% endif %}
{% else %}
Aucun mouvement trouvé

Aucun mouvement de stock ne correspond aux critères sélectionnés.

{% endif %}
{% endblock %} {% block javascripts %} {% endblock %}