Club94 Sport Center de Caramellino Gustavo
====================================
C.U.I.T.: 20-14305977-5
{% for cuenta in cuentas %} {% set total = 0 %} {% for credito in cuenta.creditosAPagar(false) %} {% set total = total + credito.montoRemanente %} {% endfor %} {% endfor %}
COBRANZA CUENTA CORRIENTE (CREDITOS POR COBRAR)

Fecha: {{ 'now' | date('d-m-Y') }}

{{ cuenta.cliente ? cuenta.cliente.apenom : '' }}

{{ cuenta.cliente and cuenta.cliente.telefonoParticular ? [ 'TLF: ', cuenta.cliente.telefonoParticular ] | join : '' }}

{{ cuenta.cliente and cuenta.cliente.email ? [ 'EMAIL: ', cuenta.cliente.email ] | join : '' }}

FECHA VENCIMIENTO FACTURA MONTO ACUMULADO ESTADO
{{ credito.factura.fechaOperacion | date('d-m-Y') }} {{ credito.vencimiento | date('d-m-Y') }} FACTURA - {{ credito.factura.codfactura }} $ {{ credito.montoRemanente | number_format(2) }} $ {{ total | number_format(2) }} {% if date(credito.vencimiento) < date() %} Vencida {% elseif date(credito.vencimiento) < date('+15days') %} Por vencer {% else %} Por pagar {% endif %}