{% if rilevazioni|length >= 1 %}
{{ 'Month'|trans }} |
[N] {{ 'AWB'|trans }} |
[N] {{ 'Acquis.'|trans }} |
[N] {{ 'Items'|trans }} |
[N] {{ 'Box'|trans }} |
[Kg] {{ 'Weight'|trans }} |
[Mc] {{ 'Volume'|trans }} |
[ - ] {{ 'CECK'|trans }} |
{% for line in rilevazioni %}
{% if line.tiporiga == 'dettaglio' %}
| {{ line.MonthIns }} |
{{ line.nawb }} |
{{ line.nacquisitions }} |
{{ line.nobj }} |
{% if line.ncolli == null or line.ncolli <= 1 %}--{% else %}{{ line.ncolli }}{% endif %} |
{{ line.weight|number_format(2, ',', '.') }} |
{{ line.volume|number_format(2, ',', '.') }} |
 |
{% endif %}
{% endfor %}
| {{ 'TOTALE'|trans }} |
{{ nawb }} |
{{ nacquisitions }} |
{{ nobj }} |
{{ ncolli }} |
{{ weight|number_format(2, ',', '.') }} |
{{ volume|number_format(2, ',', '.') }} |
{{ '--' }} |
{% else %}
{{ 'No data'|trans }}
{% endif %}
|