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

Movmientos diarios: {{ app.user.nombre }}

{# BOTONERA PRINCIPAL #}
{#
#} {# #} {#
#} {#
#} {# #} {#
#}
{# CONTENIDO PRINCIPAL #}
{# FORMULARIO #}
{% if error is defined and error %}
No se pudo guardar el movimiento: {{ error }}
{% endif %} {% if mensaje is defined and mensaje %}
{{ mensaje }}
{% endif %}
$
{# RESUMEN DE FACTURACION DEL DIA #}
{% include 'facturacion/templates/resumen.html.twig' with { facturas: facturas, movimientos: movimientos, rango: fecha } %}
{# RESULTADO DE FILTRO (DEFAULT FACTURAS DEL DIA) #}
{% include 'caja/templates/table_movimiento.html.twig' with { movimientos: movimientos, soloLectura: 0 } %}
{% endblock %} {% block javascripts %} {{ encore_entry_script_tags('caja_movimiento') }} {% endblock %}