{% for order in orders %}

{{ text_picklist }} #{{ order.order_id }}

{{ text_invoice }}
{% if order.invoice_no %} {{ order.invoice_no }} {% else %}   {% endif %}
{{ text_order_id }}
{{ order.order_id }}
{{ text_date_added }}
{{ order.date_added }}
{{ text_store }}
{{ order.store_name }}
{{ text_store_telephone }}
{{ order.store_telephone }}
{{ text_store_email }}
{{ order.store_email }}
{{ text_website }}
{{ order.store_url }}
{{ text_shipping_method }}
{{ order.shipping_method }}
{{ text_customer_email }}
{% if order.email %} {{ order.email }} {% else %}   {% endif %}
{% if order.telephone %}
{{ text_customer_telephone }}
{% if order.telephone %} {{ order.telephone }} {% else %}   {% endif %}
{% endif %}
{{ text_shipping_address }}
{% if order.shipping_address %} {{ order.shipping_address }} {% else %}   {% endif %}
{{ text_store_address }}
{{ order.store_address }}
{% for product in order.product %} {% endfor %}
{{ column_location }} {{ column_reference }} {{ column_product }} {{ column_weight }} {{ column_model }} {{ column_quantity }}
{{ product.location }} {% if product.sku %} {{ text_sku }} {{ product.sku }}
{% endif %} {% if product.upc %} {{ text_upc }} {{ product.upc }}
{% endif %} {% if product.ean %} {{ text_ean }} {{ product.ean }}
{% endif %} {% if product.jan %} {{ text_jan }} {{ product.jan }}
{% endif %} {% if product.isbn %} {{ text_isbn }} {{ product.isbn }}
{% endif %} {% if product.mpn %} {{ text_mpn }}{{ product.mpn }}
{% endif %}
{{ product.name }} {% for option in product.option %}
- {{ option.name }}: {{ option.value }} {% endfor %} {% if product.reward %}
- {{ text_points }} {{ product.reward }} {% endif %}
{{ product.weight }} {{ product.model }} {{ product.quantity }}
{% if order.comment %}
{{ text_comment }}
{{ order.comment }}
{% endif %}
{% endfor %}