-
Notifications
You must be signed in to change notification settings - Fork 0
/
workorder.html
305 lines (230 loc) · 9.75 KB
/
workorder.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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
<!DOCTYPE html>
<html>
<head>
<title>Work Order</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
<!-- font-awsome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
</head>
<body>
<div class="w3-sidebar cross-button w3-bar-block w3-collapse w3-card w3-animate-left " style="width:220px;" id="mySidebar">
<button class="w3-bar-item w3-button w3-large w3-hide-large" onclick="w3_close()">Close ×</button>
<ul class="navbar-nav text-center d-block">
<li class="nav-item">
<a href="index.html" class="nav-link w3-bar-item w3-button"><span><i class="fas fa-home pr-2"></i></span>DashBoard</a>
</li>
<li class="nav-item active">
<a href="workorder.html" class="nav-link w3-bar-item w3-button"><span><i class="far fa-copy pr-2"></i></span>Work Orders</a>
</li>
<li class="nav-item">
<a href="customer.html" class="nav-link w3-bar-item w3-button"><span><i class="fas fa-male pr-2"></i></span>Customers</a>
</li>
<li class="nav-item">
<a href="user.html" class="nav-link w3-bar-item w3-button"><span><i class="fas fa-user pr-2"></i></span>Users</a>
</li>
<li class="nav-item">
<a href="vehicle.html" class="nav-link w3-bar-item w3-button"><span><i class="fas fa-truck-moving pr-2"></i></span>Vehicles</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link w3-bar-item w3-button disabled"><span><i class="fas fa-box-open"></i></span>Containers</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link w3-bar-item w3-button disabled"><span><i class="fas fa-location-arrow"></i></span>Location</a>
</li>
<li class="nav-item">
<a href="user-charge.html" class="nav-link w3-bar-item w3-button"><span><i class="fas fa-table"></i></span>Custom Tables</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link w3-bar-item w3-button disabled"><span><i class="far fa-flag"></i></span>Reports</a>
</li>
</ul>
</div>
<div class="w3-main" style="margin-left:220px" id="lowColor">
<div class="w3-teal button-class bg-dark">
<button class="w3-button w3-teal w3-xlarge w3-hide-large" onclick="w3_open()">☰</button>
</div>
<div class="side-area">
<div class="scrollmenu workorder-menu d-flex">
<div class="active">
<a href="workorder.html">Order Setup</a>
</div>
<a href="orderactivity.html">Order Activity</a>
<a href="landfil.html" >Landfill Details</a>
<a href="line-detail.html" >Line Details</a>
<a href="notes.html">Order Notes</a>
</div>
</div>
<div class="form-area">
<div class="container">
<div class="inner-form">
<div class="row">
<div class="col-sm-12 col-md-3 col-lg-3">
<div class="form-group">
<label for="Order">Order ID</label>
<input type="text" name="work" id="Order" class="form-control" placeholder="">
</div>
<div class="form-group">
<label for="customer">Customer ID</label>
<div class="activity-select">
<select id="myselect">
<option id="option-style"></option>
<option id="option-style">Full</option>
<option id="option-style">Empty</option>
</select>
</div>
</div>
<div class="form-group">
<label for="customer">Driver ID</label>
<div class="activity-select">
<select id="myselect">
<option id="option-style"></option>
<option id="option-style">Full</option>
<option id="option-style">Empty</option>
</select>
</div>
</div>
<div class="form-group">
<label for="customer">Vehicle ID</label>
<div class="activity-select">
<select id="myselect">
<option id="option-style"></option>
<option id="option-style">Full</option>
<option id="option-style">Empty</option>
</select>
</div>
</div>
<div class="form-group">
<label for="customer">Container ID</label>
<div class="activity-select">
<select id="myselect">
<option id="option-style"></option>
<option id="option-style">Full</option>
<option id="option-style">Empty</option>
</select>
</div>
</div>
<div class="form-group">
<label for="customer">Origin ID</label>
<div class="activity-select">
<select id="myselect">
<option id="option-style"></option>
<option id="option-style">Full</option>
<option id="option-style">Empty</option>
</select>
</div>
</div>
<div class="form-group">
<label for="customer">Destination ID</label>
<div class="activity-select">
<select id="myselect">
<option id="option-style"></option>
<option id="option-style">Full</option>
<option id="option-style">Empty</option>
</select>
</div>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-4">
<div class="row row-work-order d-flex">
<!--<div class="col-sm-12 col-md-12 col-lg-12 d-flex">-->
<div class="col-sm-6 col-md-6 col-lg-6">
<div class="form-group">
<label for="date">Order Date</label>
<input type="date" name="date" id="date" class="form-control" placeholder="">
</div>
</div>
<div class="col-sm-6 col-md-6 col-lg-6">
<div class="form-group">
<label for="po">PO Number</label>
<input type="text" name="date" id="po" class="form-control" placeholder="">
</div>
</div>
<!--</div>-->
</div>
<div class="form-group">
<label for="name">Name</label>
<input type="text" name="name" id="name" class="form-control" placeholder="">
</div>
<div class="form-group">
<label for="driver">Name</label>
<input type="name" name="driver" id="driver" class="form-control" placeholder="">
</div>
<div class="form-group">
<label for="Description1">Description</label>
<input type="text" name="Description" id="Description1" class="form-control" placeholder="">
</div>
<div class="form-group">
<label for="Description2">Description</label>
<input type="text" name="Description2" id="Description1" class="form-control" placeholder="">
</div>
<div class="form-group">
<label for="Description3">Description</label>
<input type="text" name="Description3" id="Description3" class="form-control" placeholder="">
</div>
<div class="form-group">
<label for="Description4">Description</label>
<input type="text" name="Description4" id="Description4" class="form-control" placeholder="">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="buttom-button-area ">
<div class="container d-flex">
<div class="flex-container botton-start d-flex mr-auto">
<div class="d-flex">
<input type="button" name="save" value="SAVE" class="btn">
</div>
<div class="d-flex">
<input type="button" name="exit" value="EXIT" class="btn">
</div>
<div class="d-flex">
<input type="button" name="recall" value="RECALL" class="btn">
</div>
<div class="d-flex">
<input type="button" name="search" value="SEARCH" class="btn">
</div>
<div class="d-flex">
<input type="button" name="delete" value="DELETE" class="btn">
</div>
</div>
<div class="ml-auto d-flex">
<div class="history d-block text-center">
<span><i class="fas fa-history"></i></span>
<p>History</p>
</div>
<div class="history d-block ml-4 text-center">
<span><i class="fas fa-cogs"></i></span>
<p>Settings</p>
</div>
</div>
</div>
</div>
</div>
<script>
function w3_open() {
document.getElementById("mySidebar").style.display = "block";
document.getElementById("lowColor").style.opacity=".2";
document.getElementById("mySidebar").style.opacity="1";
}
function w3_close() {
document.getElementById("mySidebar").style.display = "none";
document.getElementById("lowColor").style.opacity="1";
}
</script>
</body>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</html>