{% extends "base.html" %} {% block title %}View Uploaded Orders{% endblock %} {% block head %} {% endblock %} {% block content %}
| ID | Comanda Productie |
Cod Articol |
Descr. Com. Prod |
Cantitate | Data Livrare |
Dimensiune | Com.Achiz. Client |
Nr. Linie |
Customer Name |
Customer Art. Nr. |
Open Order |
Line | Printed | Created |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ order.id }} | {{ order.comanda_productie }} | {{ order.cod_articol or '-' }} | {{ order.descr_com_prod }} | {{ order.cantitate }} | {% if order.data_livrare %} {{ order.data_livrare.strftime('%Y-%m-%d') if order.data_livrare is not string else order.data_livrare }} {% else %} - {% endif %} | {{ order.dimensiune or '-' }} | {{ order.com_achiz_client or '-' }} | {{ order.nr_linie_com_client or '-' }} | {{ order.customer_name or '-' }} | {{ order.customer_article_number or '-' }} | {{ order.open_for_order or '-' }} | {{ order.line_number or '-' }} | {% if order.printed_labels == 1 %} ✓ Yes {% else %} ✗ No {% endif %} | {% if order.created_at %} {{ order.created_at.strftime('%Y-%m-%d %H:%M') }} {% else %} - {% endif %} |
Upload your first CSV file to see orders here.