{% for subOrder in subOrders %}

{{ subOrder.orderNr }}

{% for item in subOrder.items %} {% endfor %}
{{ 'Produkt' | trans }} {{ 'Storlek' | trans }} {{ 'Antal' | trans }}
{{ item.productName }}
{{ item.productSku }} {% set texts = item.getArrayTexts() %} {% if texts is not empty %} {% for text in texts %}
- {{ text | raw }} {% endfor %} {% endif %} {% if item.addOnText is not empty %}
- {{ item.addOnText | raw }} {% endif %}
{{ item.productSizeText }} {{ item.quantity }}
{% endfor %}