PEDIDOS
Temporada
{% for shop in shopsIncludingWarehouse %} {% endfor %}
Empresa - Caja COMPRAS
Nº Unidades
COMPRAS
Nº Artículos
STOCK RECEPCIONADO
Dinero Invertido
PTE.RECEPCIÓN
Nº Unidades
PTE.RECEPCIÓN
Nº Artículos
PTE.RECEPCIÓN
Dinero Invertido
COMPRAS
Total Invertido
{{ shop.address }}
{{ orders1[shop.id] | number_format(0,".",",") }}
{{ orders2[shop.id] | number_format(0,".",",") }}
{{ orders3[shop.id] | number_format(2,".",",") }}€
{{ orders4[shop.id] | number_format(0,".",",") }}
{{ orders5[shop.id] | number_format(0,".",",") }}
{{ orders6[shop.id] | number_format(2,".",",") }}€
{{ (orders3[shop.id]+orders6[shop.id]) | number_format(2,".",",") }}€
TOTAL

{% set totalAuxTable = 0 %} {% for shop in shopsIncludingWarehouse %} {% set totalAuxTable = totalAuxTable + orders1[shop.id] %} {% endfor %} {{ totalAuxTable | number_format(0,".",",") }}

{% set totalAuxTable = 0 %} {% for shop in shopsIncludingWarehouse %} {% set totalAuxTable = totalAuxTable + orders2[shop.id] %} {% endfor %} {{ totalAuxTable | number_format(0,".",",") }}

{% set totalAuxTable3 = 0 %} {% for shop in shopsIncludingWarehouse %} {% set totalAuxTable3 = totalAuxTable3 + orders3[shop.id] %} {% endfor %} {{ totalAuxTable3 | number_format(2,".",",") }}€

{% set totalAuxTable = 0 %} {% for shop in shopsIncludingWarehouse %} {% set totalAuxTable = totalAuxTable + orders4[shop.id] %} {% endfor %} {{ totalAuxTable | number_format(0,".",",") }}

{% set totalAuxTable = 0 %} {% for shop in shopsIncludingWarehouse %} {% set totalAuxTable = totalAuxTable + orders5[shop.id] %} {% endfor %} {{ totalAuxTable | number_format(0,".",",") }}

{% set totalAuxTable6 = 0 %} {% for shop in shopsIncludingWarehouse %} {% set totalAuxTable6 = totalAuxTable6 + orders6[shop.id] %} {% endfor %} {{ totalAuxTable6 | number_format(2,".",",") }}€

{{ (totalAuxTable3+totalAuxTable6) | number_format(2,".",",") }}€