-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathticketReport.html
318 lines (314 loc) · 15 KB
/
ticketReport.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
306
307
308
309
310
311
312
313
314
315
316
317
318
<html>
<head>
<title>GNOC DV Dashboard</title>
<meta charset="utf-8"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap-select.min.css">
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.22/css/jquery.dataTables.min.css" />
<link rel="stylesheet" href="https://cdn.datatables.net/buttons/1.6.4/css/buttons.dataTables.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootswatch/4.5.3/darkly/bootstrap.min.css" />
<link rel="stylesheet" href="./css/nightMode.css" />
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.3/js/bootstrap.bundle.min.js"></script>
<script type="text/javascript"
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap-select.min.js"></script>
<script type="text/javascript" src="https://cdn.datatables.net/1.10.22/js/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="https://cdn.datatables.net/buttons/1.6.4/js/dataTables.buttons.min.js"></script>
<script type="text/javascript" src="https://cdn.datatables.net/buttons/1.6.4/js/buttons.html5.min.js"></script>
<script type="text/javascript" src="https://cdn.datatables.net/buttons/1.6.4/js/buttons.print.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.5.0/jszip.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.5.3/jspdf.min.js"></script>
<script type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/0.4.1/html2canvas.min.js"></script>
<script src="https://unpkg.com/feather-icons/dist/feather.min.js"></script>
<script type="module" src="./js/user.js" defer></script>
<script type="module" src="./js/pages/ticketReport.js" defer></script>
</head>
<body>
<nav class="navbar navbar-dark bg-dark flex-md-nowrap p-0">
<a class="navbar-brand col-sm-3 col-md-2 mr-0" href="./index.html">
<svg width="2em" height="2em" viewBox="0 0 16 16" class="bi bi-broadcast-pin" fill="currentColor"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M3.05 3.05a7 7 0 0 0 0 9.9.5.5 0 0 1-.707.707 8 8 0 0 1 0-11.314.5.5 0 0 1 .707.707zm2.122 2.122a4 4 0 0 0 0 5.656.5.5 0 0 1-.708.708 5 5 0 0 1 0-7.072.5.5 0 0 1 .708.708zm5.656-.708a.5.5 0 0 1 .708 0 5 5 0 0 1 0 7.072.5.5 0 1 1-.708-.708 4 4 0 0 0 0-5.656.5.5 0 0 1 0-.708zm2.122-2.12a.5.5 0 0 1 .707 0 8 8 0 0 1 0 11.313.5.5 0 0 1-.707-.707 7 7 0 0 0 0-9.9.5.5 0 0 1 0-.707zM6 8a2 2 0 1 1 2.5 1.937V15.5a.5.5 0 0 1-1 0V9.937A2 2 0 0 1 6 8z" />
</svg>
<b>GNOC DV Dashboard</b>
</a>
</nav>
<div class="container-fluid">
<div class="row">
<nav class="col-md-2 d-none d-md-block bg-dark sidebar">
<div class="sidebar-sticky">
<ul class="nav flex-column">
<li class="nav-item" id="dashboard_div">
<a class="nav-link" href="./index.html">
<span data-feather="home"></span>
Dashboard
</a>
</li>
<li class="nav-item" id="flight_schedule_div">
<a class="nav-link" href="./flightschedule.html">
<span data-feather="clock"></span>
Flight Schedule
</a>
</li>
<li class="nav-item" id="contact_list_div">
<a class="nav-link" href="./contactList.html">
<span data-feather="phone"></span>
Contact List
</a>
</li>
</ul>
<h6 class="sidebar-heading d-flex justify-content-between align-items-center px-3 mt-4 mb-1 text-muted"
id="tickets_header_div">
<span>Trouble Tickets</span>
<a class="d-flex align-items-center text-muted" href="./ticketSettings.html" id="ticket_settings_div">
<span data-feather="settings"></span>
</a>
</h6>
<ul class="nav flex-column mb-2">
<li class="nav-item" id="create_tts_div">
<a class="nav-link" href="./createTTS.html">
<span data-feather="file"></span>
Create a TTS
</a>
</li>
<li class="nav-item" id="create_master_tts_div">
<a class="nav-link" href="./createMasterTTS.html">
<span data-feather="file"></span>
Create a Master TTS
</a>
</li>
<li class="nav-item" id="view_tickets_div">
<a class="nav-link" href="./viewTickets.html">
<span data-feather="file-text"></span>
View Tickets
</a>
</li>
<h6 class="sidebar-heading d-flex justify-content-between align-items-center px-3 mt-4 mb-1 text-muted"
id="flight_tickets_header_div">
<span>Flight Tickets</span>
<a class="d-flex align-items-center text-muted" href="./createFlightTicket.html"
id="create_flight_ticket_icon_div">
<span data-feather="plus-circle"></span>
</a>
</h6>
<ul class="nav flex-column mb-2">
<li class="nav-item" id="create_flight_ticket_div">
<a class="nav-link" href="./createFlightTicket.html">
<span data-feather="file"></span>
Create a Flight Ticket
</a>
</li>
<li class="nav-item" id="view_flight_tickets_div">
<a class="nav-link" href="./viewFlightTickets.html">
<span data-feather="file-text"></span>
View Flight Tickets
</a>
</li>
<li class="nav-item" id="view_missions_div">
<a class="nav-link" href="./viewMissions.html">
<span data-feather="file-text"></span>
View Missions
</a>
</li>
</ul>
<h6 class="sidebar-heading d-flex justify-content-between align-items-center px-3 mt-4 mb-1 text-muted"
id="ccir_header_div">
<span>CCIRs</span>
<a class="d-flex align-items-center text-muted" href="./createCCIR.html" id="add_a_ccir_icon_div">
<span data-feather="plus-circle"></span>
</a>
</h6>
<ul class="nav flex-column mb-2">
<li class="nav-item" id="add_a_ccir_div">
<a class="nav-link" href="./createCCIR.html">
<span data-feather="file"></span>
Add a CCIR
</a>
</li>
<li class="nav-item" id="view_ccirs_div">
<a class="nav-link" href="./viewCCIRS.html">
<span data-feather="file-text"></span>
View CCIRs
</a>
</li>
</ul>
<h6 class="sidebar-heading d-flex justify-content-between align-items-center px-3 mt-4 mb-1 text-muted"
id="reports_header_div">
<span>Reports</span>
</h6>
<ul class="nav flex-column mb-2">
<li class="nav-item" id="24_hour_report_div">
<a class="nav-link active" href="./ticketReport.html">
<span data-feather="file-text"></span>
24 Hour Ticket Report <span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item" id="weekend_report_div">
<a class="nav-link" href="./weekendTicketReport.html">
<span data-feather="file-text"></span>
Weekend Ticket Report
</a>
</li>
<li class="nav-item" id="morning_slides_div">
<a class="nav-link" href="./morningSlides.html">
<span data-feather="file-text"></span>
Morning Slides
</a>
</li>
<li class="nav-item" id="personnel_stats_div">
<a class="nav-link" href="./personnelStats.html">
<span data-feather="file-text"></span>
Personnel Stats
</a>
</li>
<li class="nav-item" id="monthly_metrics_div">
<a class="nav-link" href="./metrics.html">
<span data-feather="file-text"></span>
Monthly Metrics
</a>
</li>
<li class="nav-item" id="permissions_div">
<a class="nav-link" href="./permissions.html">
<span data-feather="file-text"></span>
Permissions
</a>
</li>
</ul>
</div>
</nav>
<main role="main" class="col-md-9 ml-sm-auto col-lg-10 px-4" id="export">
<div
class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom">
<h1 id="header">Ticket Updates <span id="start_date"></span> - <span id="end_date"></span></h1><span
class="float-right"><button type="button" id="genpdf" class="btn btn-primary">Download PDF</button></span>
</div>
<div class="col-md-12">
<div class="card" id="modified">
<div class="card-header">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-archive" fill="currentColor"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M0 2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1v7.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 12.5V5a1 1 0 0 1-1-1V2zm2 3v7.5A1.5 1.5 0 0 0 3.5 14h9a1.5 1.5 0 0 0 1.5-1.5V5H2zm13-3H1v2h14V2zM5 7.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5z" />
</svg>
<b> Modified Tickets</b>
</div>
<div class="card-body">
<table id="listModifiedTickets" class="display" style="width:100%">
<thead>
<tr>
<th>ADW Ticket #</th>
<th>Tail #</th>
<th>Mission #</th>
<th>DV</th>
<th>DV Impact</th>
<th>Status</th>
<th>Update</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<br />
<div class="card" id="open">
<div class="card-header">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-archive" fill="currentColor"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M0 2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1v7.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 12.5V5a1 1 0 0 1-1-1V2zm2 3v7.5A1.5 1.5 0 0 0 3.5 14h9a1.5 1.5 0 0 0 1.5-1.5V5H2zm13-3H1v2h14V2zM5 7.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5z" />
</svg>
<b> Open Tickets</b>
</div>
<div class="card-body">
<table id="listOpenTickets" class="display" style="width:100%">
<thead>
<tr>
<th>ADW Ticket #</th>
<th>Tail #</th>
<th>Mission #</th>
<th>DV</th>
<th>DV Impact</th>
<th>Issue Description</th>
<th>CCIR</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<br />
<div class="card" id="fixed">
<div class="card-header">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-archive" fill="currentColor"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M0 2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1v7.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 12.5V5a1 1 0 0 1-1-1V2zm2 3v7.5A1.5 1.5 0 0 0 3.5 14h9a1.5 1.5 0 0 0 1.5-1.5V5H2zm13-3H1v2h14V2zM5 7.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5z" />
</svg>
<b> Fixed Tickets</b>
</div>
<div class="card-body">
<table id="listFixedTickets" class="display" style="width:100%">
<thead>
<tr>
<th>ADW Ticket #</th>
<th>Tail #</th>
<th>Mission #</th>
<th>DV</th>
<th>DV Impact</th>
<th>Issue</th>
<th>Fix</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<br />
<div class="card" id="closed">
<div class="card-header">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-archive" fill="currentColor"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M0 2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1v7.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 12.5V5a1 1 0 0 1-1-1V2zm2 3v7.5A1.5 1.5 0 0 0 3.5 14h9a1.5 1.5 0 0 0 1.5-1.5V5H2zm13-3H1v2h14V2zM5 7.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5z" />
</svg>
<b> Closed Tickets</b>
</div>
<div class="card-body">
<table id="listClosedTickets" class="display" style="width:100%">
<thead>
<tr>
<th>ADW Ticket #</th>
<th>Tail #</th>
<th>Mission #</th>
<th>DV</th>
<th>DV Impact</th>
<th>Issue</th>
<th>Fix</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</main>
<br />
<footer class="py-4 col-md-2 bg-dark" style="box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);">
<div class="container-fluid">
<div class="d-flex align-items-center justify-content-between small">
<div class="text-muted">GNOC DV Dashboard - maintained by GNOC @ JBA<br />
<a href="mailto:[email protected]">[email protected]</a>
</div>
</div>
</div>
</footer>
</div>
</div>
</body>
</html>