{% load humanize %} {% load i18n %} {% language 'en' %} {% load money %} Nota de Venta
{{ company.name | upper }}
{{ company.address }}
Tel: {{ company.phone }}
Email: {{ company.email }}
Web: {{ company.web_site }}
R.U.C. {{ company.ruc }}
NOTA DE VENTA
N° {{ order.reference }}
{% comment %} {% endcomment %}
Emisión: {{ order.created_at | date:"d/m/Y" }}
Cliente: {{ customer_name | upper | default:"" }}
RUC / DNI: {{ order.customer.document_number | default:"00000000" }}
Dirección: {{ order.customer.direccion|default:"SIN DIRECCIÓN" }}
Cond. Pago: {{ order.forma_pago }}
Vendedor: {{ order.vendedor.codigo }}
{% for item in order.order_details.all %} {% endfor %} {% for i in "123456789012345"|slice:":15" %} {% endfor %}
CANT. UNIDAD CÓDIGO
PRODUCTO
DESCRIPCIÓN PRECIO
UNIT.
TOTAL
{{ item.quantity|floatformat:0 }} {{ item.unit_of_measurement.name|upper }} {{ item.product.sku }} {{ item.product.name }} {{ item.product.featured_pcf|floatformat:2 }} {{ item.total|floatformat:2 }}
 

SON: {{ order.total|money_words }} SOLES

Observaciones: NO SE ACEPTAN DEVOLUCIONES DE DINERO, PERO SI CAMBIOS DE PRODUCTO DENTRO DE LOS 7 DÍAS SIGUIENTES A LA COMPRA
QR
{% endlanguage %}