{% extends 'base.html' %} {% block content %}
| Período | Emisión | Vencimiento | Total | Pagado | Deuda | Estado | Acciones |
|---|---|---|---|---|---|---|---|
| {{ i.period }} | {{ i.issue_date.strftime('%d/%m/%Y') if i.issue_date else '—' }} | {{ i.due_date.strftime('%d/%m/%Y') if i.due_date else '—' }} | $ {{ '%.2f'|format(i.total_amount or 0) }} | $ {{ '%.2f'|format(i.paid_amount or 0) }} | $ {{ '%.2f'|format(i.debt_amount) }} | {{ i.status }} |
PDF
{% if i.status in ['pendiente','parcial'] and i.debt_amount > 0 %}
{% if i.mercadopago_init_point or i.mercadopago_sandbox_init_point %}
Pagar
{% else %}
Generar pago
{% endif %}
{% endif %}
{% if i.mercadopago_status %}Mercado Pago: {{ i.mercadopago_status }} {{ i.mercadopago_status_detail or '' }} {% endif %}
|
| Todavía no hay liquidaciones para esta institución. | |||||||
| Fecha | Período | Método | Importe | Referencia | Estado |
|---|---|---|---|---|---|
| {{ p.payment_date.strftime('%d/%m/%Y') if p.payment_date else '—' }} | {{ p.invoice.period }} | {{ p.method }} | $ {{ '%.2f'|format(p.amount or 0) }} | {{ p.reference or p.mercadopago_payment_id or '—' }} | {{ p.status or p.mercadopago_status or 'registrado' }} |
| Sin pagos registrados. | |||||