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

{{ form_start(form, {'attr': {'class': 'form-horizontal'}}) }}
Commande N° {{ vente.id }} {{ vente.client.raisonSociale }}
{{ form_widget(form) }}
{% for aproduit in vente.getVproduitsNonLivres() %} {% if aproduit is not null %} {% endif %} {% endfor %}
Référence Designation Qtt commandée Qtt livrée
{{ aproduit.produit.getReference() }} {{ aproduit.produit.titre }}
Réf: {{ aproduit.produit.reference }}
{{ aproduit.getQuantiteLivre() }} / {{ aproduit.quantite }}
Retour
{{ form_end(form) }} {% endblock %}