Adresse: {{ document.adress }}
{% if document.client.region not in document.adress %} {{ document.client.region }}{% endif %}
{% if document.client.city not in document.adress %} {{ document.client.city }}{% endif %}
{% if document.client.country not in document.adress %} {{ document.client.country }}{% endif %}
{% endif %}
Image
Nom
Description
Qte
Remise
TTC
{% set TotalTTC = 0 %}
{% set discountPrdTotal = 0 %}
{% set echangePrds = document.documentdeclinationproduits|filter(prod => prod.type == "declinationEchange") %}
{% if echangePrds|length %}
Liste des articles retournés
{% endif %}
{% for key, documentdeclinationproduit in echangePrds %}
{% set discountPrd = 0 %}
{% set picture = absolute_url(asset('/images/galery_placeholder_200.png')) %}
{% for image in documentdeclinationproduit.produitdeclinationvalue.picture %}
{% if image.isselected %}
{% set picture = app.request.getschemeandhttphost() ~ vich_uploader_asset(image, 'file') %}
{% endif %}
{% endfor %}
{{ documentdeclinationproduit.reference }}
{{ documentdeclinationproduit.description }}
{{ documentdeclinationproduit.quantity }}
{{ documentdeclinationproduit.discount|number_format(3,',','') }}
{% if documentdeclinationproduit.discountType == 'percent' %}
%
{% set discountPrd = (documentdeclinationproduit.priceHT * documentdeclinationproduit.discount) /100 %}
{% else %}
TND
{% set discountPrd = documentdeclinationproduit.discount %}
{% endif %}
{% set discountPrdTotal = discountPrdTotal + discountPrd %}
{% if company.name %}{{ company.name }}{% endif %}
{% if company.address %}
{% if company.name %} - {% endif %}{{ company.address }}
{% endif %}
{% if company.tvaCode %}
TVA : {{ company.tvaCode }}
{% endif %}
{% set contactPhones = [] %}
{% if company.phone %}{% set contactPhones = contactPhones|merge([company.phone]) %}{% endif %}
{% if company.mobile %}{% set contactPhones = contactPhones|merge([company.mobile]) %}{% endif %}
{% if contactPhones|length or company.mail or company.website %}
{% if contactPhones|length %}
Tel : {{ contactPhones|join(' | ') }}
{% endif %}
{% if company.mail %}
{% if contactPhones|length %} | {% endif %}email : {{ company.mail }}
{% endif %}
{% if company.website %}
{% if contactPhones|length or company.mail %} | {% endif %}Site internet : {{ company.website }}
{% endif %}