{% extends "base.html" %} {% block title %}Upload Order Data for Labels{% endblock %} {% block head %} {% endblock %} {% block content %}

Upload Order Data for Labels

{% if not orders %}
{% else %}
{% endif %}

Preview Table

{% if orders %} {% for order in orders %} {% if order and (order.get('comanda_productie', '') or order.get('descr_com_prod', '')) %} {% endif %} {% endfor %} {% else %} {% endif %}
Comanda
Productie
Cod
Articol
Descr. Com.
Prod
Cantitate Data
Livrare
Dimensiune Com.Achiz.
Client
Nr. Linie com.
Client
Customer
Name
Customer Article
Number
Open for
order
Line
{{ order.get('comanda_productie', '') }} {{ order.get('cod_articol', '') }} {{ order.get('descr_com_prod', '') }} {{ order.get('cantitate', '') }} {{ order.get('data_livrare', '') }} {{ order.get('dimensiune', '') }} {{ order.get('com_achiz_client', '') }} {{ order.get('nr_linie_com_client', '') }} {{ order.get('customer_name', '') }} {{ order.get('customer_article_number', '') }} {{ order.get('open_for_order', '') }} {{ order.get('line_number', '') }}
No CSV file uploaded yet.
{% if validation_errors or validation_warnings %}

Validation Results

{% if validation_errors %}
Errors found:
    {% for error in validation_errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {% if validation_warnings %}
Warnings:
    {% for warning in validation_warnings %}
  • {{ warning }}
  • {% endfor %}
{% endif %}
{% endif %} {% if report %}

Import Report

{{ report }}

{% endif %}
{% endblock %}