{% if achat.product_reference in plateauxProduits|keys %}
{{ achat.category_name }} |
{% for produit in plateauxProduits[achat.product_reference] %}
|
{% endfor %}
{% else %}
{{ achat.category_name }}
{% endif %}
|
{% if achat.product_reference in plateauxProduits|keys %}
{{ achat.subcategory_name|default(' ')|raw }} |
{% for produit in plateauxProduits[achat.product_reference] %}
|
{% endfor %}
{% else %}
{{ achat.subcategory_name }}
{% endif %}
|
{% if achat.product_reference in plateauxProduits|keys %}
{{ achat.product_reference }} |
{% for produit in plateauxProduits[achat.product_reference] %}
|
{% endfor %}
{% else %}
{{ achat.product_reference }}
{% endif %}
|
{% if achat.product_reference in plateauxProduits|keys %}
{{ achat.name }} |
{% for produit in plateauxProduits[achat.product_reference] %}
{{ produitsPlateaux[produit].nom }} |
{% endfor %}
{% else %}
{{ achat.name }}
{% endif %}
|
{% if achat.product_reference in plateauxProduits|keys %}
|
{% for produit in plateauxProduits[achat.product_reference] %}
{% if produitsPlateaux[produit].poid %}{{ produitsPlateaux[produit].poid }}{% else %} {% endif %} |
{% endfor %}
{% else %}
{{ achat.product_weight != 0 ? achat.product_weight *1 }}
{% endif %}
|
{% if achat.product_reference in plateauxProduits|keys %}
|
{% for produit in plateauxProduits[achat.product_reference] %}
{{ achat.total_quantity }} |
{% endfor %}
{% else %}
{{ achat.total_quantity }}
{% endif %}
|
{% if achat.product_reference in plateauxProduits|keys %}
|
{% for produit in plateauxProduits[achat.product_reference] %}
{% if produitsPlateaux[produit].poid %}{{ achat.total_quantity*produitsPlateaux[produit].poid }}{% else %} {% endif %} |
{% endfor %}
{% else %}
{{ achat.total_weight != 0 ? achat.total_weight *1 }}
{% endif %}
|
{% endfor %}