{% set lienimage = produit['image'] %}
{% if lienimage %}
{% else %}
{% endif %}
|
{{ produit['produit'] }} |
{% set quantity = findkeyarrayobj(produit['id'], quantite) %}
{{ quantity }} |
{{ produit['prix_ttc'] }}€ |
{% set totalttc = produit['prix_ttc'] * quantity %}
{{ totalttc|number_format(2) }}€ |
{% set totalTotalTtc = totalTotalTtc + totalttc %}
{% set totalht = produit['prix_ht'] * quantity %}
{{ totalht|number_format(2) }}€ |
{% set totalTotalHt = totalTotalHt + totalht %}
{% set totaltva = totalttc - totalht %}
{{ totaltva|number_format(2) }}€ |
{% set totalTotalTva = totalTotalTva + totaltva %}
{% endfor %}