123 lines
4.1 KiB
Twig
123 lines
4.1 KiB
Twig
<!DOCTYPE html>
|
|
<html dir="{{ direction }}" lang="{{ lang }}">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>{{ title }}</title>
|
|
<base href="{{ base }}" />
|
|
<link href="view/javascript/bootstrap/css/bootstrap.css" rel="stylesheet" media="all" />
|
|
<script type="text/javascript" src="view/javascript/jquery/jquery-2.1.1.min.js"></script>
|
|
<script type="text/javascript" src="view/javascript/bootstrap/js/bootstrap.min.js"></script>
|
|
<link href="view/javascript/font-awesome/css/font-awesome.min.css" type="text/css" rel="stylesheet" />
|
|
<link type="text/css" href="view/stylesheet/stylesheet.css" rel="stylesheet" media="all" />
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
{% for order in orders %}
|
|
<div style="page-break-after: always;">
|
|
<h1>{{ text_picklist }} #{{ order.order_id }}</h1>
|
|
<table class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<td colspan="2">{{ text_order_detail }}</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><address>
|
|
<strong>{{ order.store_name }}</strong><br />
|
|
{{ order.store_address }}
|
|
</address>
|
|
<b>{{ text_telephone }}</b> {{ order.store_telephone }}<br />
|
|
<b>{{ text_email }}</b> {{ order.store_email }}<br />
|
|
<b>{{ text_website }}</b> <a href="{{ order.store_url }}">{{ order.store_url }}</a></td>
|
|
<td style="width: 50%;"><b>{{ text_date_added }}</b> {{ order.date_added }}<br />
|
|
{% if order.invoice_no %}
|
|
<b>{{ text_invoice_no }}</b> {{ order.invoice_no }}<br />
|
|
{% endif %}
|
|
<b>{{ text_order_id }}</b> {{ order.order_id }}<br />
|
|
{% if order.shipping_method %}
|
|
<b>{{ text_shipping_method }}</b> {{ order.shipping_method }}<br />
|
|
{% endif %}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<table class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<td style="width: 50%;"><b>{{ text_shipping_address }}</b></td>
|
|
<td style="width: 50%;"><b>{{ text_contact }}</b></td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>{{ order.shipping_address }}</td>
|
|
<td>{{ order.email }}<br/>
|
|
{{ order.telephone }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<table class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<td><b>{{ column_location }}</b></td>
|
|
<td><b>{{ column_reference }}</b></td>
|
|
<td><b>{{ column_product }}</b></td>
|
|
<td><b>{{ column_weight }}</b></td>
|
|
<td><b>{{ column_model }}</b></td>
|
|
<td class="text-right"><b>{{ column_quantity }}</b></td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for product in order.product %}
|
|
<tr>
|
|
<td>{{ product.location }}</td>
|
|
<td>{% if product.sku %}
|
|
{{ text_sku }} {{ product.sku }}<br />
|
|
{% endif %}
|
|
{% if product.upc %}
|
|
{{ text_upc }} {{ product.upc }}<br />
|
|
{% endif %}
|
|
{% if product.ean %}
|
|
{{ text_ean }} {{ product.ean }}<br />
|
|
{% endif %}
|
|
{% if product.jan %}
|
|
{{ text_jan }} {{ product.jan }}<br />
|
|
{% endif %}
|
|
{% if product.isbn %}
|
|
{{ text_isbn }} {{ product.isbn }}<br />
|
|
{% endif %}
|
|
{% if product.mpn %}
|
|
{{ text_mpn }}{{ product.mpn }}<br />
|
|
{% endif %}</td>
|
|
<td>{{ product.name }}
|
|
{% for option in product.option %}
|
|
<br />
|
|
<small> - {{ option.name }}: {{ option.value }}</small>
|
|
{% endfor %}</td>
|
|
<td>{{ product.weight }}</td>
|
|
<td>{{ product.model }}</td>
|
|
<td class="text-right">{{ product.quantity }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% if order.comment %}
|
|
<table class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<td><b>{{ text_comment }}</b></td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>{{ order.comment }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</body>
|
|
</html>
|