-
Notifications
You must be signed in to change notification settings - Fork 6
/
return.html
127 lines (124 loc) · 5.16 KB
/
return.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
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body class="return-pdf">
<div id="header">
<div class="document-title">Return {returnid}</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-orderid">
<th>Order</th>
<td>{orderid}</td>
</tr>
<tr class="metadata-customer">
<th>Customer</th>
<td>{customer name}</td>
</tr>
<tr class="metadata-reference">
<th>Reference</th>
<td>{reference}</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 class="return-returned-products products return-block">
<h2>Returned products</h2>
<table>
<thead>
<tr>
<th class="column-productcode">Product code</th>
<th class="column-name">Name</th>
<th class="column-amount right">Amount</th>
<th class="column-price right">Price</th>
<th class="column-status">Status</th>
</tr>
</thead>
<tbody>
<tr>
<td class="column-productcode">{productcode}</td>
<td class="column-name">{name}</td>
<td class="column-amount right">{amount}</td>
<td class="column-price right">{price}</td>
<td class="column-status">{status}</td>
</tr>
</tbody>
</table>
</div>
<div class="return-replacement-products products return-block">
<h2>Replacement products</h2>
<table>
<thead>
<tr>
<th class="column-productcode">Product code</th>
<th class="column-name">Name</th>
<th class="column-amount right">Amount</th>
<th class="column-price right">Price</th>
<th class="column-status">Status</th>
</tr>
</thead>
<tbody>
<tr>
<td class="column-productcode">{productcode}</td>
<td class="column-name">{name}</td>
<td class="column-amount right">{amount}</td>
<td class="column-price right">{price}</td>
<td class="column-status">{status}</td>
</tr>
</tbody>
</table>
</div>
<div class="return-totals return-block">
<h2>Totals</h2>
<table class="vertical-table">
<tbody>
<tr class="return-totals-returning-products">
<th>Returning</th>
<td>{amount} products</td>
</tr>
<tr class="return-totals-replacing-products">
<th>Replacing</th>
<td>{amount} products</td>
</tr>
<tr class="return-totals-days-after-order-shipped">
<th>Days after order shipped</th>
<td>{amount} days</td>
</tr>
<tr class="return-totals-value-returning">
<th>Value returning</th>
<td>{value}</td>
</tr>
<tr class="return-totals-value-replacing">
<th>Value replacing</th>
<td>{value}</td>
</tr>
<tr class="return-totals-value-difference">
<th>Value difference</th>
<td>{value}</td>
</tr>
</tbody>
</table>
</div>
<div class="template-custom-html-end">{template-end-text}</div>
</div>
</div>
</body>
</html>