{% extends "base.html" %} {% set active = "inventario" %} {% block title %}Orden de compra #{{ compra.id }} ยท ArcaBeauty Club{% endblock %} {% block content %}
| Producto | Cantidad | Costo unitario | Subtotal |
|---|---|---|---|
| {{ it.nombre }} | {{ it.cantidad }} | ${{ "%.0f"|format(it.costo_unitario) }} | ${{ "%.0f"|format(it.subtotal) }} |