{% extends 'layouts/panel_layout.html.twig' %} {% block stylesheets %} {% endblock %} {% block title %} Movimientos Extra General {% endblock %} {% block content %} {# TITULO #}

MOVIMIENTOS EXTRAS EMPLEADOS

FECHA {{ fecha | date('d-m-Y') }}

{# BOTONERA PRINCIPAL #}
Imprimir Lista

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 %}
{% endblock %} {% block javascripts %} {% endblock %}