{% set serviciosVendidos = 0 %}
{% set sumaServicios = 0 %}
{% set sumaIngresos = 0 %}
{% set sumaGastos = 0 %}
{% set restante= 0 %}
{% for i in ingresos %}
{{ loop.index }} |
{{ i.N_TICKET }} |
{{ i.FECHA_INGRESO | date('d-m-Y') }} |
$ {{ i.TOTAL_INGRESOS | number_format(2,".",",") }} |
$ {{ i.TOTAL_GASTOS | number_format(2,".",",") }} |
{#
$ {{ i.TOTAL_GASTOS | number_format(2,".",",") }}
| {{ i.FECHA_SERVICIO | date('Y-m-d') }} |
$ {{ i.TOTAL_ESPERADO | number_format(2,".",",") }} |
#}
{% set serviciosVendidos = serviciosVendidos + i.N_TICKET %}
{% set sumaServicios = sumaServicios + i.TOTAL_ESPERADO %}
{% set sumaIngresos = sumaIngresos + i.TOTAL_INGRESOS %}
{% set sumaGastos = sumaGastos + i.TOTAL_GASTOS %}
{% set restante = sumaIngresos - sumaGastos %}
{% set diferencia = sumaIngresos - sumaGastos %}
{% endfor %}
TOTALES: |
{{ serviciosVendidos }} |
|
$ {{ sumaServicios | number_format(2,".",",") }} |
$ {{ sumaGastos | number_format(2,".",",") }} |
{# $ {{ sumaIngresos | number_format(2,".",",") }} |
< #}
{#
$ {{ diferencia | number_format(2,",",",") }} | #}
RESTANTE: |
|
|
|
$ {{ restante | number_format(2,".",",") }} |