ArcaBeauty Club

Ticket #{{ venta.id }} · {{ venta.fecha[:16] }}


{% if venta.cliente_nombre %}

Cliente: {{ venta.cliente_nombre }}

{% endif %}
{% for it in items %}
{{ it.cantidad }}x {{ it.nombre }} ${{ "%.0f"|format(it.subtotal) }}
{% endfor %}
{% if venta.descuento and venta.descuento > 0 %}
Subtotal${{ "%.0f"|format(venta.subtotal) }}
Descuento{% if venta.promo_codigo %} ({{ venta.promo_codigo }}){% endif %}-${{ "%.0f"|format(venta.descuento) }}

{% endif %}
Total${{ "%.0f"|format(venta.total) }}

Método de pago: {{ venta.metodo_pago }}

¡Gracias por tu visita!