{% extends 'layouts/panel_layout.html.twig' %} {% block title %} Cheques {% endblock %} {% block content %} {# TITULO #}

Cheques

{# BOTONERA PRINCIPAL #}

{{ countCheques }}

CANTIDAD DE CHEQUES

{{ chequesCobrados }} / ${{ totalImporteCobrados| number_format(2) }}

CHEQUES EN CARTERA

{{ chequesLiberado }} / ${{ totalImporteLiberado| number_format(2) }}

CHEQUES ENTREGADOS

{# CONTENIDO PRINCIPAL #}
{# FILTRO DE ESTADOS #}
{# RESULTADO DE FILTRO (DEFAULT FACTURAS DEL DIA) #}
{% include 'cheques/templates/table_result.html.twig' with { cheques: cheques } %}
{{ form_start(form, {'attr': {'id': 'chequeAdd'}}) }} {{ form_end(form) }} {{ form_start(formEdit, {'attr': {'id': 'chequeEdit'}}) }} {{ form_end(form) }} {% endblock %} {% block javascripts %} {{ encore_entry_script_tags('cheques_index') }} {% endblock %}