-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackinglist.html
141 lines (131 loc) · 5.5 KB
/
packinglist.html
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body class="packinglist-pdf">
<div id="header">
<div class="barcode-picklist"><img src="example.png"></div>
<div class="document-title">Packing list {picklistid}</div>
</div>
<div id="footer">
<div class="page-number"></div>
</div>
<div id="background"><img src="example-background.png"></div>
<div id="document">
<div id="documenthead">
<div id="metadata">
<table>
<tr class="metadata-packinglistid">
<th>Packing list</th>
<td>{picklistid}</td>
</tr>
<tr class="metadata-orderid">
<th>Order</th>
<td>{orderid}</td>
</tr>
<tr class="metadata-customerid">
<th>Customer ID</th>
<td>{customerid}</td>
</tr>
<tr class="metadata-packinglistdate">
<th>Date</th>
<td>01-01-2016</td>
</tr>
<tr class="metadata-reference">
<th>Reference</th>
<td>{reference}</td>
</tr>
<tr class="metadata-preferred-delivery-date">
<th>Reference</th>
<td>02-01-2016</td>
</tr>
<tr class="metadata-custom-orderfield-name">
<th>{orderfield-name}</th>
<td>{orderfield-value}</td>
</tr>
<tr class="metadata-custom-orderfield-name2">
<th>{orderfield-name2}</th>
<td>{orderfield-value}</td>
</tr>
</table>
</div>
<div id="address">
Example company B.V.<br>
Dorpsstraat 21<br>
3928 AM Utrecht<br>
Nederland<br>
<span class="address-email">{emailaddress}</span><br>
<span class="address-telephone">{telephone}</span>
</div>
</div>
<div class="content">
<div class="template-custom-html-start">{template-start-text}</div>
<div id="products" class="products">
<table>
<thead>
<tr>
<th class="column-productcode">#</th>
<th class="column-name">Name</th>
<th class="right column-delivered">Delivered</th>
<th class="right column-price">Total price</th>
</tr>
</thead>
<tbody>
<tr>
<td class="column-productcode">{productcode}</td>
<td class="column-name">
<div class="name">{name}</div>
<div class="description">{remarks}</div>
<div class="product-value">{productfield-title}: {value}}</div>
</td>
<td class="right column-delivered">{amount}</td>
<td class="right column-price">{price}</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2" class="right">Total:</td>
<td class="right column-delivered">{count}</td>
<td class="right column-price">{price}</td>
</tr>
</tfoot>
</table>
</div>
<p class="total-weight">Total weight: 2,1 kg</p>
<div class="customer-remarks">
<div class="customer-remarks-heading">Customer remarks</div>
<div>{remarks}</div>
</div>
<div id="backorders" class="products">
<h2>Still in backorder</h2>
<table>
<thead>
<tr>
<th class="column-productcode">#</th>
<th class="column-name">Name</th>
<th class="right column-amount">Amount</th>
<th class="column-orderid">Order</th>
<th class="column-orderdate">Date</th>
</tr>
</thead>
<tbody>
<tr>
<td class="column-productcode">{productcode}</td>
<td class="column-name">
<div class="name">{name}</div>
<div class="description">{description}</div>
<div class="product-value">{productfield-title}: {value}}</div>
</td>
<td class="right column-amount">{amount}</td>
<td class="column-orderid">{orderid}</td>
<td class="column-orderdate">01-01-2016</td>
</tr>
</tbody>
</table>
</div>
<div class="template-custom-html-end">{template-end-text}</div>
</div>
</div>
</body>
</html>