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

Facturas Recuperadas

{# BOTONERA PRINCIPAL #}
Facturas Recuperadas: {{ facturas | length }}
{# CONTENIDO PRINCIPAL #}
{# RESULTADO DE FILTRO (DEFAULT FACTURAS DEL DIA) #}
{% for factura in facturas %} {% endfor %}
FECHA / HORA VENDEDOR CLIENTE Nº Comprobante Temporal Cantidad de artículos Monto Opciones
{{ factura.fechaOperacion | date('d-m-Y') }} / {{ factura.horaOperacion | date('h:m:s') }} {{factura.vendedor.nombre}} {% if factura.cliente %}{{ factura.cliente.apenom | upper }}{% endif %} {{ factura.codfacturaTmp }} {% set cantidad = 0 %} {% for linea in factura.factuLinea %} {% set cantidad = cantidad + linea.cantidad %} {% endfor %} {{ cantidad }} $ {{ factura.totalFactura | number_format(2,",",".") }}
{% endblock %} {% block javascripts %} {% endblock %}