{% extends "base.html" %} {% block title %}Abono {{ abono.numero }}{% endblock %} {% block page_title %}Abono {{ abono.numero }}{% endblock %} {% block content %} {% with msgs = get_flashed_messages(with_categories=true) %} {% for cat, msg in msgs %}
| Descripción | Cantidad | Precio unit. | Subtotal |
|---|---|---|---|
| {{ l.descripcion }} | {{ '%.2f'|format(l.cantidad or 1) }} | {{ '%.2f'|format(l.precio_unitario or 0) }} € | {{ '%.2f'|format(l.subtotal or 0) }} € |
| Base imponible | {{ '%.2f'|format(abono.importe_base or 0) }} € | ||
| IVA ({{ abono.iva_pct|int }}%) | {{ '%.2f'|format(abono.iva_importe or 0) }} € | ||
| Total | {{ '%.2f'|format(abono.total or 0) }} € | ||