{#- SPDX-License-Identifier: Apache-2.0 SPDX-FileCopyrightText: 2025 - 2026 BMO Soluciones, S.A. -#} {% extends 'base.html' %} {% block content %}
| # | {{ _('Fecha Estimada') }} | {{ _('Cuota') }} | {{ _('Interés') }} | {{ _('Capital') }} | {{ _('Saldo') }} |
|---|---|---|---|---|---|
| {{ item.numero }} | {% if item.fecha_estimada %} {{ item.fecha_estimada.strftime('%d/%m/%Y') }} {% else %} - {% endif %} | {% if prestamo.moneda %} {{ prestamo.moneda.simbolo or prestamo.moneda.codigo }} {% endif %} {{ "{:,.2f}".format(item.cuota) }} | {% if prestamo.moneda %} {{ prestamo.moneda.simbolo or prestamo.moneda.codigo }} {% endif %} {{ "{:,.2f}".format(item.interes) }} | {% if prestamo.moneda %} {{ prestamo.moneda.simbolo or prestamo.moneda.codigo }} {% endif %} {{ "{:,.2f}".format(item.capital) }} | {% if prestamo.moneda %} {{ prestamo.moneda.simbolo or prestamo.moneda.codigo }} {% endif %} {{ "{:,.2f}".format(item.saldo) }} |
| {{ _('Período') }} | {{ _('Días') }} | {{ _('Saldo Base') }} | {{ _('Tasa (%)') }} | {{ _('Interés Calculado') }} | {{ _('Saldo Posterior') }} | {{ _('Nómina') }} |
|---|---|---|---|---|---|---|
| {{ interes.fecha_desde.strftime('%d/%m/%Y') }} - {{ interes.fecha_hasta.strftime('%d/%m/%Y') }} | {{ interes.dias_transcurridos }} | {% if prestamo.moneda %} {{ prestamo.moneda.simbolo or prestamo.moneda.codigo }} {% endif %} {{ "{:,.2f}".format(interes.saldo_base) }} | {{ "{:.4f}".format(interes.tasa_aplicada) }} | {% if prestamo.moneda %} {{ prestamo.moneda.simbolo or prestamo.moneda.codigo }} {% endif %} {{ "{:,.2f}".format(interes.interes_calculado) }} | {% if prestamo.moneda %} {{ prestamo.moneda.simbolo or prestamo.moneda.codigo }} {% endif %} {{ "{:,.2f}".format(interes.saldo_posterior) }} | {% if interes.nomina_id %} {{ _('Nómina') }} {% else %} - {% endif %} |
{{ _('No se han calculado intereses aún.') }}
{% endif %}| {{ _('Fecha') }} | {{ _('Tipo') }} | {{ _('Monto Abonado') }} | {{ _('Saldo Anterior') }} | {{ _('Saldo Posterior') }} | {{ _('Comprobante') }} | {{ _('Observaciones') }} |
|---|---|---|---|---|---|---|
| {{ abono.fecha_abono.strftime('%d/%m/%Y') }} | {% if abono.tipo_abono == 'manual' %} {{ _('Manual') }} {% else %} {{ _('Nómina') }} {% endif %} | {% if prestamo.moneda %} {{ prestamo.moneda.simbolo or prestamo.moneda.codigo }} {% endif %} {{ "{:,.2f}".format(abono.monto_abonado) }} | {% if prestamo.moneda %} {{ prestamo.moneda.simbolo or prestamo.moneda.codigo }} {% endif %} {{ "{:,.2f}".format(abono.saldo_anterior) }} | {% if prestamo.moneda %} {{ prestamo.moneda.simbolo or prestamo.moneda.codigo }} {% endif %} {{ "{:,.2f}".format(abono.saldo_posterior) }} |
{% if abono.tipo_comprobante %}
{{ abono.tipo_comprobante|replace('_', ' ')|title }}: {{ abono.numero_comprobante }} {% if abono.referencia_bancaria %} Ref: {{ abono.referencia_bancaria }} {% endif %} {% else %} - {% endif %} |
{{ abono.observaciones or '-' }} |
{{ _('No hay pagos registrados.') }}
{% endif %}