{% extends "macros/base.html" %} {% block title %}Reporte: Finanzas - {{ modulo_name }}{% endblock %} {% block styles %} {% endblock %} {% block content %}
| Día | VENTA TOTAL | COMISIÓN | GASTOS | MEDIOS DE PAGO | |||
|---|---|---|---|---|---|---|---|
| Crédito | Débito | Mercado Pago | Efectivo/Dep. | ||||
| {{ dia }} | {{ ("$" ~ "{:,.0f}".format(d.venta_total).replace(',', '.')) if d.venta_total > 0 else "-" }} | {{ ("$" ~ "{:,.0f}".format(d.comision).replace(',', '.')) if d.comision > 0 else "-" }} | {{ ("-$" ~ "{:,.0f}".format(d.gastos).replace(',', '.')) if d.gastos > 0 else "-" }} | {{ ("$" ~ "{:,.0f}".format(d.credito).replace(',', '.')) if d.credito > 0 else "-" }} | {{ ("$" ~ "{:,.0f}".format(d.debito).replace(',', '.')) if d.debito > 0 else "-" }} | {{ ("$" ~ "{:,.0f}".format(d.mp).replace(',', '.')) if d.mp > 0 else "-" }} | {{ ("$" ~ "{:,.0f}".format(d.efectivo).replace(',', '.')) if d.efectivo > 0 else "-" }} |
| TOTAL | ${{ "{:,.0f}".format(totales_mes.venta_total).replace(',', '.') }} | ${{ "{:,.0f}".format(totales_mes.comision).replace(',', '.') }} | -${{ "{:,.0f}".format(totales_mes.gastos).replace(',', '.') }} | ${{ "{:,.0f}".format(totales_mes.credito).replace(',', '.') }} | ${{ "{:,.0f}".format(totales_mes.debito).replace(',', '.') }} | ${{ "{:,.0f}".format(totales_mes.mp).replace(',', '.') }} | ${{ "{:,.0f}".format(totales_mes.efectivo).replace(',', '.') }} |