{% macro tableHead() %} {% endmacro %} {% macro products(form_order_products) %} {% endmacro %} {% macro productsTemplate(form_order_products) %} {% endmacro %} {% macro tableTotal() %}
Produits / Producteurs Prix HT à l'unité Prix TTC à l'unité Disponibilité Quantité Total
{% verbatim %}{{orderProduct.title}}{% endverbatim %} {% verbatim %}{{orderProduct.price}}{% endverbatim %}€ {% verbatim %}{{orderProduct.priceWithTax}}{% endverbatim %}€ {{ form_widget(form_order_products.orderProducts.vars.prototype.quantityOrder, {'attr' : {'ref': 'fieldQuantity', 'v-model' : 'orderProduct.quantityOrder', '@change' : 'updateOrderProducts'}}) }} {{ form_widget(form_order_products.orderProducts.vars.prototype.product, {'attr' : {'ref' : 'fieldProduct', 'v-model' : 'orderProduct.product'}}) }} {#{{ form_widget(form_order_products.orderProducts.vars.prototype.id, {'attr' : {'ref' : 'fieldId', 'v-model' : 'orderProduct.id'}}) }}#} {% verbatim %}{{orderProduct.totalWithTaxAndReduction}}{% endverbatim %}€
Total without Tax ${order.total}€
Total ${order.totalWithTax}€
{% endmacro %}