{% extends 'base.html.twig' %} {% block title %}Modifier {{ produit.reference }} - {{ parent() }} {% endblock %} {% block body %}

Modifier le produit {{ produit.reference }}

{{ form_start(form) }}
{{ form_row(form.reference) }}
{{ form_row(form.stockInitial) }}
{{ form_row(form.description) }}
{% if produit.mouvementsStock|length > 0 %}
Information : Ce produit a {{ produit.mouvementsStock|length }} mouvement(s) de stock associé(s). La modification de la référence mettra à jour tous les mouvements existants.
{% endif %}
Retour
{{ form_end(form) }}
{% endblock %}