ENTRADAS : {{ fecha | date('d-m-Y') }}
{% if entrada | length > 0 %}
{% include 'caja/templates/table_movimiento_general.html.twig' with { movimientos : entrada} %}
{% endif %}
SALIDAS : {{ fecha | date('d-m-Y') }}
{% if salida | length > 0 %}
{% include 'caja/templates/table_movimiento_general.html.twig' with { movimientos : salida} %}
{% endif %}
ENTREGAS PARCIALES DE CAJEROS GENERAL : {{ fecha | date('d-m-Y') }}
{% if parcial | length > 0 %}
{% include 'caja/templates/table_movimiento_general.html.twig' with { movimientos : parcial, parcial: true } %}
{% endif %}
ENTRADAS QUE NO AFECTARON CAJA : {{ fecha | date('d-m-Y') }}
{% if noAfecta | length > 0 %}
{% include 'caja/templates/table_movimiento_general.html.twig' with { movimientos : noAfecta} %}
{% endif %}