{% extends 'base.html.twig' %} {% form_theme form 'form/fields.html.twig' %} {% block body %}

{{ form_start(form, {'attr': {'class': 'form-horizontal'}}) }}
Commande N° {{ achat.numCommande }} {{ achat.fournisseur.raisonSociale }}
{{ form_widget(form) }}
{% for alp in achat_retour.rproduits() %} {% endfor %}
Produit Quantitée commandée Quantitée retournée Nouvelle quantitée
{{ alp.getAchatProduit().getProduit().getTitre() }} {{ alp.getAchatProduit().getQuantite() }} {{ alp.getQuantite() }}
Retour
{{ form_end(form) }} {% endblock %} {% block javascripts %} {% endblock %}