{% extends 'base.html' %} {% block title %}Factura {{ factura.numero }}{% endblock %} {% block page_title %}Factura {{ factura.numero }}{% endblock %} {% block page_subtitle %}Detalle del comprobante{% endblock %} {% block content %}
CLIENTE
MÉTODO DE PAGO
| Descripción | Cant. | Precio Unit. | Subtotal |
|---|---|---|---|
| {{ d.descripcion }} | {{ d.cantidad }} | S/ {{ d.precio_unitario|floatformat:2 }} | S/ {{ d.subtotal|floatformat:2 }} |
| Subtotal | S/ {{ factura.subtotal|floatformat:2 }} | ||
| IGV (18%) | S/ {{ factura.igv|floatformat:2 }} | ||
| TOTAL | S/ {{ factura.total|floatformat:2 }} | ||