-
Notifications
You must be signed in to change notification settings - Fork 0
/
distribution_step1.html
277 lines (277 loc) · 15.9 KB
/
distribution_step1.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
<!DOCTYPE html> <!-- CLEANED -->
<html lang="en">
<head>
<title>Timaflu - Distribution</title>
<link rel="stylesheet" type="text/css" href="css/stylesheet.css"/>
<link rel="stylesheet" type="text/css" href="css/top.css"/>
<link rel="stylesheet" type="text/css" href="css/form.css" />
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/message.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<!-- <link href="css/stylesheet.css" rel="stylesheet" type="text/css"> -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"></script>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script src="js/main.js"></script>
<script src="js/charts.js"></script>
<script src="js/sorttable.js"></script>
</head>
<body>
<div id="main">
<header class="top">
<div class="logo">TIMAFLU</div>
<div class="title">January 4th, 2018</div>
<ul class="menu">
<div class="dropdown"><!-- Needed for dropdown-content, so when hovering over it it keeps displaying -->
<a href="index.html">
<li><div class="profile-picture"></div><span>dr. B. Onderstal</span></li>
</a>
<ul class="dropdown-content">
<a href="index.html"><li><img src="img/logout.png"><span>Logout</span></li></a>
<a href="index.html"><li><img src="img/settings.png"><span>Settings</span></li></a>
</ul>
</div>
</ul>
</header>
<div class="container-main">
<header class="hero">
<ul class="items">
<a href="order.php">
<li>
<div class="notify"><div class="blinker green"></div></div>
<img src="img/neworder.png">
<span class="description">Create Order</span>
</li>
</a>
<a href="stock.php">
<li>
<div class="notify"><div class="blinker red"></div></div>
<img src="img/stock.png">
<span class="description">Stock</span>
</li>
</a>
<a href="billing_step1.php">
<li>
<div class="notify"><div class="blinker orange"></div></div>
<img src="img/invoice.png">
<span class="description">Billing</span>
</li>
</a>
<a href="purchase_step1.php">
<li>
<div class="notify"><div class="blinker red"></div></div>
<img src="img/purchase.png">
<span class="description">Purchase</span>
</li>
</a>
<a href="distribution_step1.html">
<li>
<div class="notify"><div class="blinker red"></div></div>
<img src="img/distr.png">
<span class="description">Distribution</span>
</li>
</a>
</ul>
</header>
<div class="main">
<div class="row">
<div class="cont6 card">
<header>
<h4 class="title">Robot status</h4>
<p class="description">Select a robot to view history</p>
</header>
<table class="stats sortable">
<col style="width:25%">
<col style="width:75%">
<tbody>
<tr>
<th><span>Robot ID</span></th>
<th><span>Status</span></th>
</tr>
<tr>
<td><span>1</span></td>
<td><div class="switcher green"><span>idle</span></div></td>
</tr>
<tr>
<td><span>2</span></td>
<td><div class="switcher red"><span class="blinker fast">error </span><div class="switcher white"><span>path blocked</span></div></div></td>
</tr>
<tr>
<td><span>3</span></td>
<td><div class="switcher grey"><span class="blinker">collecting </span><div class="switcher white"><span>order XXXXX</span></div></div></td>
</tr>
<tr>
<td><span>4</span></td>
<td><div class="switcher green"><span>idle</span></div></td>
</tr>
<tr>
<td><span>5</span></td>
<td><div class="switcher green"><span>idle</span></div></td>
</tr>
<tr>
<td><span>6</span></td>
<td><div class="switcher grey"><span class="blinker">collecting </span><div class="switcher white"><span>order XXXXX</span></div></div></td>
</tr>
<tr>
<td><span>7</span></td>
<td><div class="switcher grey"><span class="blinker">collecting </span><div class="switcher white"><span>order XXXXX</span></div></div></td>
</tr>
<tr>
<td><span>8</span></td>
<td><div class="switcher green"><span>idle</span></div></td>
</tr>
</tbody>
</table>
</div>
<div class="cont6 card">
<img class="gauge" src="img/gauge.png">
</div>
</div>
<div class="row">
<div class="cont3 card">
<header>
<h4 class="title">Orders ready for packing</h4>
<p class="description">Select an order to start packing process</p>
<div class="row">
<div class="cont12 card right content">
<input id='stock_search' class='cont12' type='text'></input>
</div>
</div>
</header>
<table class="stats sortable">
<col style="width:30%">
<col style="width:70%">
<tbody>
<tr>
<th><span>Order ID</span></th>
<th><span>Pack before</span></th>
</tr>
<tr>
<td><span>6152374</span></td>
<td><div class="switcher grey"><span>⏰ 1480 min </span><div class="switcher white"><span>tomorrow 16:00</span></div></div></td>
</tr>
<tr OnClick="document.location='distribution_step2.html'" style="cursor:pointer">
<td><span>8793645</span></td>
<td><div class="switcher red"><span class="blinker fast">⏰ 40 min </span><div class="switcher white"><span>today 16:00</span></div></div></td>
</tr>
</tbody>
</table>
<footer>
<label>Previous</label>
<label><b>1</b></label>
<label>Next</label>
</footer>
</div>
<div class="cont9 card">
<header>
<h4 class="title">Order Display</h4>
<p class="description">Select an order to view its contents</p>
<div class="row">
<div class="cont12 card right content">
<input id='stock_search' class='cont12' type='text'></input>
</div>
</div>
</header>
<table class="stats sortable">
<col style="width:10%">
<col style="width:28%">
<col style="width:20%">
<col style="width:22%">
<col style="width:20%">
<tbody>
<tr>
<th>Order ID</th>
<th>Costumer name</th>
<th>Order completed for</th>
<th>Status</th>
<th>First invoiced</th>
</tr>
<tr>
<td>7563548</td>
<td>Buurtapotheek Albergen</td>
<td><div class="switcher red">20 days</div></td>
<td><div class="switcher orange">invoiced <div class="switcher white">2×</div></div></td>
<td><div class="switcher orange">17-12-2017 <div class="switcher white">19 days ago</div></div></td>
</tr>
<tr>
<td>3245785</td>
<td>Apotheek De Poldervaart</td>
<td>2 days</td>
<td><div class="switcher green">billable <div class="switcher white">€ 4537,78</div></div></td>
<td>-</td>
</tr>
<tr>
<td>8272348</td>
<td>Alphega Apotheek Cleij</td>
<td>-</td>
<td><div class="switcher grey">awaits completion <div class="switcher white">489 min</div></div></td>
<td>-</td>
</tr>
<tr>
<td>8793645</td>
<td>SAL Apotheek Brandevoort</td>
<td>1 day</td>
<td><div class="switcher green">billable <div class="switcher white">€ 1036,65</div></div></td>
<td>-</td>
</tr>
<tr>
<td>6152374</td>
<td>Buurtapotheek Albergen</td>
<td>just now</td>
<td><div class="switcher green">billable <div class="switcher white">€ 3254,57</div></div></td>
<td>-</td>
</tr>
<tr>
<td>2934904</td>
<td>Alphega Apotheek De Betuwe</td>
<td>-</td>
<td><div class="switcher grey">awaits completion <div class="switcher white">12 min</div></div></td>
<td>-</td>
</tr>
<tr>
<td>3765344</td>
<td>Buurtapotheek Albergen</td>
<td>-</td>
<td><div class="switcher grey">awaits completion <div class="switcher white">83 min</div></div></td>
<td>-</td>
</tr>
<tr>
<td>8675476</td>
<td>Alphega Apotheek De Betuwe</td>
<td>-</td>
<td><div class="switcher grey">awaits completion <div class="switcher white">156 min</div></div></td>
<td>-</td>
</tr>
<tr>
<td>8476586</td>
<td>SAL Apotheek Brandevoort</td>
<td>-</td>
<td><div class="switcher grey">awaits completion <div class="switcher white">54 min</div></div></td>
<td>-</td>
</tr>
<tr>
<td>1263535</td>
<td>Apotheek De Poldervaart</td>
<td><div class="switcher orange">6 days</div></td>
<td><div class="switcher green">billable <div class="switcher white">€ 7238,64</div></div></td>
<td>-</td>
</tr>
</tbody>
</table>
<footer>
<label>Previous</label>
<label><b>1</b> 2</label>
<label>Next</label>
</footer>
</div>
</div>
<footer>
<label></label>
<label>Ⓒ 2017 | version 1.0 beta 6</label>
<label></label>
</footer>
</div>
</div>
</div>
</body>
</html>