{% extends "base.html" %} {% block title %}Rectificativa {{ rect.numero }}{% endblock %} {% block page_title %}Rectificativa {{ rect.numero }}{% endblock %} {% block topbar_actions %} Descargar PDF {% if rect.origen_numero %} Ver factura original {% endif %}
{% endblock %} {% block content %}| Descripción | Cant. | Precio unit. | Dto. | Subtotal |
|---|---|---|---|---|
| {{ l.descripcion }} | {{ l.cantidad }} | {{ "%.2f"|format(l.precio_unitario) }} € | {{ l.descuento_pct }}% | {{ "%.2f"|format(l.subtotal) }} € |
| Base imponible | {{ "%.2f"|format(rect.subtotal) }} € |
| IVA ({{ rect.iva_pct }}%) | {{ "%.2f"|format(rect.iva_importe) }} € |
| IRPF ({{ rect.irpf_pct }}%) | −{{ "%.2f"|format(rect.irpf_importe) }} € |
| TOTAL | {{ "%.2f"|format(rect.total) }} € |