{% extends "base.html" %} {% block content %}
| Producto | Cant. | Precio Un. | Total Línea | Comisión |
|---|---|---|---|---|
| {{ item[0] }} | {{ item[1] }} | ${{ "{:,.0f}".format(item[2]).replace(',', '.') }} | ${{ "{:,.0f}".format(item[4]).replace(',', '.') }} | ${{ "{:,.0f}".format(item[5]).replace(',', '.') }} |
| No se registraron productos en esta rendición. | ||||
| Total Calculado por Sistema: | ${{ "{:,.0f}".format(total_calculado).replace(',', '.') }} | ${{ "{:,.0f}".format(comision_total).replace(',', '.') }} | ||
{{ rendicion[9] if rendicion[9] else "Sin observaciones." }}