-
Notifications
You must be signed in to change notification settings - Fork 0
/
my-case-review.php
198 lines (191 loc) · 5.95 KB
/
my-case-review.php
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
<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
//Declare Title, Content, Author
$pgAuthor = "David Sangrey";
$pgContent = "My Cases";
$useIP = 1; //1 if Yes, 0 if No.
//UserSpice Required
require_once '../users/init.php'; //make sure this path is correct!
require_once $abs_us_root . $us_url_root . 'users/includes/template/prep.php';
if (!securePage($_SERVER['PHP_SELF'])) {
die();
}
if (!isset($_GET['cne'])) {
header('Location: cases-list.php');
usError("No Case Specified.");
die();
}
//Who are we working with?
$beingManaged = $_GET['cne'];
$beingManaged = intval($beingManaged);
//DB Info
$db = include 'db.php';
mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
$mysqli = new mysqli($db['server'], $db['user'], $db['pass'], 'records', $db['port']);
//All Case Info
$stmtCaseInfo = $mysqli->prepare("WITH sealsCTI
AS
(
SELECT MIN(ID), seal_ID, seal_name
FROM sealsudb.staff
GROUP BY seal_ID
)
SELECT client_nm, canopy_breach, current_sys, platform_name, hull_stat, status_name, color_name, notes, case_created, rev_date, rev_stat_text, COALESCE(seal_name, CONCAT('SEAL ID', reviewer), 'Not Assigned') as reviewer
FROM cases AS c
JOIN case_seal AS cs ON cs.case_ID = c.case_ID
JOIN case_history AS ch ON ch.ch_ID = c.last_ch_id
JOIN review_info as ri on ri.caseID = c.case_ID
JOIN lookups.status_lu AS slu ON slu.status_id = ch.case_stat
JOIN lookups.platform_lu AS plu ON plu.platform_id = c.platform
JOIN lookups.case_color_lu AS ccl ON ccl.color_id = ch.code_color
JOIN lookups.review_stat_lu as rsl on rsl.rev_stat_ID = ri.review_status
LEFT JOIN sealsCTI as ss on ss.seal_ID = ri.reviewer
WHERE c.case_ID = ?;");
$stmtCaseInfo->bind_param("i", $beingManaged);
$stmtCaseInfo->execute();
$resultCaseInfo = $stmtCaseInfo->get_result();
$stmtCaseInfo->close();
if ($resultCaseInfo->num_rows === 0) {
usError("No Case Specified");
header('Location: cases-list.php');
die();
}
//All Assigned Seals
$stmtAssigned = $mysqli->prepare("WITH sealsCTI
AS
(
SELECT MIN(ID), seal_ID, seal_name
FROM sealsudb.staff
GROUP BY seal_ID
)
SELECT COALESCE(seal_name, CONCAT('SEAL ID ', seal_kf_id), 'MISSING INFORMATION') AS seal_name, dispatch, support, self_dispatch
FROM case_assigned AS ca
LEFT JOIN sealsCTI AS ss ON ss.seal_ID = ca.seal_kf_id
WHERE case_ID = ?;");
$stmtAssigned->bind_param("i", $beingManaged);
$stmtAssigned->execute();
$resultAssigned = $stmtAssigned->get_result();
$stmtAssigned->close();
?>
<h2>Welcome, <?= echousername($user->data()->id); ?>.</h2>
<p>You are Reviewing Paperwork for Case # <?= $beingManaged; ?> <a href="my-cases.php" class="btn btn-small btn-danger" style="float: right;">Go Back</a></p>
<br>
<h3>Case Info</h3>
<br>
<h5>Basic Information</h5>
<table class="table table-hover table-dark table-responsive-md table-bordered table-striped">
<thead>
<tr>
<th>Client Name</th>
<th>System</th>
<th>Platform</th>
<th>Paperwork Filed</th>
</tr>
</thead>
<tbody>
<?php while ($rowCaseInfo = $resultCaseInfo->fetch_assoc()) { ?>
<tr>
<td><?= $rowCaseInfo["client_nm"] ?></td>
<td><?= $rowCaseInfo["current_sys"] ?></td>
<td><?= $rowCaseInfo["platform_name"] ?></td>
<td><?= $rowCaseInfo["case_created"] ?></td>
</tr>
</tbody>
</table>
<br>
<h5>Situation Information</h5>
<table class="table table-hover table-dark table-responsive-md table-bordered table-striped">
<thead>
<tr>
<th>Canopy Status</th>
<th>Hull Status</th>
<th>Case Color</th>
<th>Case Status</th>
</tr>
</thead>
<tbody>
<tr>
<?= $rowCaseInfo["canopy_breach"] == 0 ? '<td>Intact</td>' : '<td>Broken</td>'; ?>
<td><?= $rowCaseInfo["hull_stat"] ?></td>
<td><?= $rowCaseInfo["color_name"] ?></td>
<td><?= $rowCaseInfo["status_name"] ?></td>
</tr>
</tbody>
</table>
<br>
<h5>Case Notes</h5>
<table class="table table-hover table-dark table-responsive-md table-bordered table-striped">
<thead>
<tr>
<th>Notes</th>
</tr>
</thead>
<tbody>
<tr>
<td><?= $rowCaseInfo["notes"] ?></td>
</tr>
</tbody>
</table>
<br>
<h5>Review Information</h5>
<table class="table table-hover table-dark table-responsive-md table-bordered table-striped">
<thead>
<tr>
<th>Reviewer</th>
<th>Status</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr>
<td><?= $rowCaseInfo["reviewer"] ?></td>
<td><?= $rowCaseInfo["rev_stat_text"] ?></td>
<td><?= $rowCaseInfo["rev_date"] ?></td>
</tr>
</tbody>
</table>
<?php }
$resultCaseInfo->free();
?>
<br>
<h3>Responder Information</h3>
<table class="table table-hover table-dark table-responsive-md table-bordered table-striped">
<thead>
<tr>
<th>Responder</th>
<th>Responder Type</th>
<th>Self-Dispatched?</th>
</tr>
</thead>
<tbody>
<?php
while ($rowAssigned = $resultAssigned->fetch_assoc()) {
$field1name = $rowAssigned["seal_name"];
$field2name = $rowAssigned["dispatch"];
$field3name = $rowAssigned["support"];
$field4name = $rowAssigned["self_dispatch"]; ?>
<tr>
<td><?= $field1name ?></td>
<?php if ($rowAssigned["dispatch"] == 0 && $rowAssigned["support"] == 0) { ?>
<td>Primary Seal</td>
<?php } elseif ($rowAssigned["dispatch"] == 1 && $rowAssigned["support"] == 0) { ?>
<td>Dispatcher</td>
<?php } elseif ($rowAssigned["dispatch"] == 0 && $rowAssigned["support"] == 1) { ?>
<td>Supporting Seal</td>
<?php } elseif ($rowAssigned["dispatch"] == 1 && $rowAssigned["support"] == 1) { ?>
<td>Supporting Dispatcher</td>
<?php }
echo $rowAssigned["self_dispatch"] == 0 ? "<td>No</td>" : "<td>Yes</td>"; ?>
</tr>
<?php
}
$resultAssigned->free();
?>
</tbody>
</table>
<br>
<p><a href="my-cases.php" class="btn btn-small btn-danger" style="float: right;">Go Back</a></p>
<br>
<?php require_once $abs_us_root . $us_url_root . 'users/includes/html_footer.php'; ?>