order_shipping.twig
4.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!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>