{% load humanize %} {% load i18n %} {% language 'en' %} {% load money %}
|
|
{{ 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 }}
|
|
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" }}
|
{% comment %}
Cond. Pago: {{ order.forma_pago }} Vendedor: {{ order.vendedor.codigo }} | {% endcomment %}
| 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 |