{{ transfer.alias }}
TIENDA DE SALIDA
{{ shopOut.nameForLabels | upper }}
{{ shopOut.address | upper }}
TIENDA DE ENTRADA
{{ shopIn.nameForLabels | upper }}
{{ shopIn.address | upper }}
{% if transfer.observations %}
OBSERVACIONES: {{ transfer.observations }}
{% endif %}
{% set main_loop = 0 %}
{% for article in elements %}
{% set main_loop = main_loop + 1 %}
{{ main_loop }} |
{% if groupConfiguration.useLocatorAlias or groupConfiguration.useLocator %}
LOC |
{% endif %}
{% if groupConfiguration.showAutoincrementNumberForArticle %}
ORD |
{% endif %}
COD.ART |
MARCA |
|
{% 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(10, false, '') }} |
{% set sizes = article['sizes'] %}
{% for key,value in sizes %}
{{ value }} |
{% endfor %}
UDS |
{% set qty = article['qty'] %}
{% for key,value in qty %}
{% if value == 0 %}
{% else %}
{{ value }}
{% endif %}
|
{% endfor %}
{{ article['pairs'] }} |
{% endfor %}