{% for key,client in orderClients %}

{{client.companyName}}

{{client.email}}

{{client.stateText}}

{{'CreateOrderClient.direccion_entrega'| trans}}: {{client.streetAddress1}}


{{'CreateOrderClient.detelle_pedido'| trans}}

{% set total = 0 %} {% for product in client.produts %} {% set classImg = product.typeSector == 2 ? 'object-contain' : 'object-cover' %}
{% if product.image is defined %} {% if not product.image is null %} {% else %} {% endif %} {% else %} {% endif %}

{{product.nameProd}}

{% if product.typeSector == 1 %}{{'piolaStore.presentation'|trans()}}:{% endif %}

{{product.quantity}} x {{product.money_symbol}}{{product.price}}

{{product.money_symbol}} {{product.price * product.quantity}}

{% set total = total + (product.price * product.quantity) %} {% endfor %}

{{total}}

{% endfor %}