{% for fecha in fechas %}
GNB Moto Parts de Gonzalo Beatini
Hoja {{ loop.index }}
====================================
C.U.I.T. N°: 20-37299599-9
{% set month = fecha | date('F') %}
Logística Compras Generales - Día : {{ fecha | date('d') }} de {{ month | trans }} de {{ fecha | date('Y') }}
{% if tipos | length %}
{% endif %}
Condiciones: {{ tipos | join(', ') }}
{% set total_efectivo = 0 %}
{% set total_cc = 0 %}
{% set total_cheque = 0 %}
{% set total_global = 0 %}
{% for r in pages[fecha] %}
{% set total = r.totalRemito %}
Nro. Rem.
C.U.I.T
Emitido A
Efectivo
CC
Cheque.
Total
{% set total_efectivo = total_efectivo + r.totalEfectivo %}
{% set total_cc = total_cc + r.totalCuentaCorriente %}
{% set total_cheque = total_cheque + r.totalCheque %}
{% set total_global = total_global + total %}
{% endfor %}
{{ r.codremito }}
{{ r.proveedor.cuilt }}
{{ r.proveedor.nombre }}
{{ r.totalEfectivo | number_format(2, ',', '.') }}
{{ r.totalCuentaCorriente | number_format(2, ',', '.') }}
{{ r.totalCheque | number_format(2, ',', '.') }}
{{ total | number_format(2, ',', '.') }}
Efectivo
CC
Cheque.
Total
Total del día:
{{ total_efectivo | number_format(2) }}
{{ total_cc | number_format(2) }}
{{ total_cheque | number_format(2) }}
{{ total_global | number_format(2) }}
GNB Moto Parts de Gonzalo Beatini
Hoja 1
====================================
C.U.I.T. N°: 20-37299599-9
Efectivo
CC
Cheque.
Total
Total del día:
{{ total_efectivo | number_format(2) }}
{{ total_cc | number_format(2) }}
{{ total_cheque | number_format(2) }}
{{ total_global | number_format(2) }}