{% if groupConfiguration.useLocatorAlias or groupConfiguration.useLocator %}
LOC |
{% endif %}
{% if groupConfiguration.showAutoincrementNumberForArticle %}
ORD |
{% endif %}
COD.ART |
MARCA |
TALLA |
UDS |
{% for article in item['article'] %}
{% set sizes = article['sizes'] %}
{% set qty = article['qty'] %}
{% for key,value in qty %}
{% if value > 0 %}
{% set number = loop.index %}
{% if groupConfiguration.useLocatorAlias %}
{{ article['loc_alias'] }} |
{% elseif groupConfiguration.useLocator %}
{{ article['loc'] }} |
{% endif %}
{% if groupConfiguration.showAutoincrementNumberForArticle %}
{{ article['ord'] }} |
{% endif %}
{{ article['cod-art'] }} |
{{ (article['brand'] | upper) | truncate(8, false, '') }} |
{{ sizes[number-1] }} |
{{ value }} |
{% endif %}
{% endfor %}
TOTAL: {{ article['pairs'] }}
|
{% endfor %}