-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathocorrencias.php
358 lines (357 loc) · 17.1 KB
/
ocorrencias.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
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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
<?php
include 'classes/usuario.class.php';
include 'classes/log.class.php';
include 'classes/ocorrencia.class.php';
$pageTitle = "Ocorrências · Visão Geral";
include 'nucleo/cabecario.php';
include("nucleo/barraLateral.php");
if (isset($_POST['filtro'])){
$filtro = $_POST['filtro'];
} else {
$filtro = 0;
}
if (isset($_GET['f'])){
$filtro = $_GET['f'];
}
if (!empty($_POST)) {
$LOG = new LOG;
if (isset($_POST['IdOcorrencia'])) {
$id = $_POST['IdOcorrencia'];
$objOcorrencia = new Ocorrencia;
$result = $objOcorrencia->deletarOcorrencia($id);
if (is_bool($result)) {
echo "<!-- Modal -->
<div class='modal fade bs-modal-sm' id='modal_excOcorrencia' tabindex='-1' role='dialog' aria-labelledby='modal_excOcorrenciaLabel' aria-hidden='true'>
<div class='modal-dialog modal-sm'>
<div class='modal-content panel-success'>
<div class='modal-header panel-heading'>
<button type='button' class='close' data-dismiss='modal' aria-hidden='true'>×</button>
<h4 class='modal-title' id='modal_excOcorrenciaLabel'>Ocorrência excluída!</h4>
</div>
</div>
</div>
</div>";
$LOG->gerarLOG($_SESSION['matricula'], $_SERVER['REMOTE_ADDR'], 'DEL_OCO', $result);
}
else {
echo "<!-- Modal -->
<div class='modal fade' id='modal_excOcorrencia' tabindex='-1' role='dialog' aria-labelledby='modal_excOcorrenciaLabel' aria-hidden='true'>
<div class='modal-dialog'>
<div class='modal-content panel-danger'>
<div class='modal-header panel-heading'>
<button type='button' class='close' data-dismiss='modal' aria-hidden='true'>×</button>
<h4 class='modal-title' id='modal_excOcorrenciaLabel'>Não foi possível excluir a ocorrência</h4>
</div>
<div class='modal-body'>
<p>".$result."</p>
<br><br><p><b>Contate à COLINF</b></p>
</div>
</div>
</div>
</div>";
}
unset($objOcorrencia);
echo "<script>$('#modal_excOcorrencia').modal('show');</script>";
}
}
?>
<div id="page-wrapper">
<div class="row">
<div class="col-lg-6">
<h1>Ocorrências <small>Visão geral</small></h1>
</div>
<div class="col-lg-6" align="right">
<?php if($_SESSION['tipo_usuario'] == 1) {echo "<a href='defeitos.php'><button type='button' class='btn btn-default'><i class='glyphicon glyphicon-warning-sign'></i> Defeitos</button></a>";}?>
<?php if(($_SESSION['tipo_usuario'] == 1) OR ($_SESSION['tipo_usuario'] == 3)) {echo "<a href='cadOcorrencia.php'><button type='button' class='btn btn-primary'><i class='glyphicon glyphicon-plus-sign'></i> Nova ocorrência</button></a>";}?>
</div>
</div><!-- /.row -->
<div class="row">
<div class="col-lg-12">
<ol class="breadcrumb">
<li class="active"><i class="glyphicon glyphicon-tasks"></i> Ocorrências</li>
</ol>
</div>
</div><!-- /.row -->
<div class="row">
<div class="col-lg-12">
<table>
<tr>
<th colspan="2"></th>
</tr>
<tr>
<td>
<input type='checkbox' id="toggle" onClick="toggle(this)"> Exibição:
</td>
<td>
<form role="form" action="ocorrencias.php" method="POST">
<select style="font-weight:bold" id="filtro" name="filtro" class="form-control" onchange="this.form.submit()">
<option <?php if ($filtro == 0 ){echo "selected";}?> value="0">Todos</option>
<option <?php if ($filtro == 1 ){echo "selected";}?> value="1">Abertos</option>
<option <?php if ($filtro == 2 ){echo "selected";}?> value="2">Em andamento</option>
<option <?php if ($filtro == 3 ){echo "selected";}?> value="3">Fechados</option>
<option <?php if ($filtro == 4 ){echo "selected";}?> value="4">Incompletos</option>
</select>
</form>
</td>
<td>
<a data-toggle='modal' data-id='".$row['matricula']."' href='#modal_excOcorrenciaMultiplos' class='abre-excluirModal'>
<button type="button" id="exc" class="btn btn-primary" onclick="getCheckboxValues(this); return false;">
<i class='glyphicon glyphicon-remove'></i> Excluir
</button>
</a>
</td>
</tr>
</table>
<div class="table-responsive">
<table id="" class="table table-hover">
<p>
<tr>
<th></th>
<td></td>
<th>Solicitante</th>
<th>Patrimônio</th>
<th>Localização</th>
<th>Estado do Serviço</th>
<th>Data de cadastro</th>
<th>Bolsista alocado</th>
</tr>
<form action='ocorrencias.php' name="ocorrencia" id="ocorrencia" method='post'>
<tbody>
<?php
$listaOcorrencia = new Ocorrencia;
$result = $listaOcorrencia->listarOcorrencias($filtro, $_SESSION['matricula'], $_SESSION['tipo_usuario']);
if (is_array($result)) {
foreach ($result as $row) {
if ($row['tipo'] == 1){
$tipo = "Gabinete";
} if ( $row['tipo'] == 2){
$tipo = "Monitor";
} if ( $row['tipo'] == 3){
$tipo = "Estabilizador";
} if ( $row['tipo'] == 4){
$tipo = "Nobreak";
} if ( $row['tipo'] == 5){
$tipo = "Mesa";
} if ( $row['tipo'] == 6){
$tipo = "Cadeira";
} if ( $row['tipo'] == 7){
$tipo = "Ar-condicionador";
} if ( $row['tipo'] == 8){
$tipo = "Armário";
} if ( $row['tipo'] == 9){
$tipo = "Projetor";
}
$estado_servico = $row['estado_servico'];
if($estado_servico == '1'){echo "<tr id='fooTr'class='warning'>";} else if($estado_servico == '2'){echo "<tr id='fooTr'class='success'>";} else if($estado_servico == 3){ echo "<tr id='fooTr' class='active'>";} else if($estado_servico == 4){ echo "<tr id='fooTr' class='danger'>";}
if ($estado_servico == '1'){
$estado_servico = "Aberto";
} if ( $estado_servico == '2'){
$estado_servico = "Em andamento";
} if ( $estado_servico == '3'){
$estado_servico = "Fechado";
} if ( $estado_servico == '4'){
$estado_servico = "Incompleto";
}
echo "
<td ><input type='checkbox' name='foo[]' id='foo[]' value='".$row['id']."'></td>
<td>
<a title='Ver ocorrência' href='verOcorrencia.php?o=".$row['id']."'>
<i class='glyphicon glyphicon-search'></i>
</a>
</td>
</td>";
/*if ($row['Usuario_matricula'] == $_SESSION['matricula']) {
if (($estado_servico == 'Aberto') || ($estado_servico == 'Em andamento') || ($estado_servico == 'Incompleto')) {
echo"
<td>
<a title='Editar ocorrência' href='alterarOcorrencia.php?o=".$row['id']."'>
<i class='glyphicon glyphicon-pencil'></i>
</a>
</td>
<td>
<a title='Excluir ocorrência' data-toggle='modal' data-id='".$row['id']."' href='#modal_excOcorrenciaSimples' class='abre-excluirModal'>
<i class='glyphicon glyphicon-remove'></i>
</a>
</td>";
} else if ($estado_servico == 'Fechado'){
echo"
<td>
<a title='Reabrir ocorrência' href='reabrirOcorrencia.php?o=".$row['id']."'>
<i class='glyphicon glyphicon-share'></i>
</a>
</td>
<td>
</td>";
}
}
if ($_SESSION['tipo_usuario'] == 2){
if ($estado_servico == 'Aberto') {
echo"
<td>
<a title='Assumir ocorrência' href='assumirOcorrencia.php?o=".$row['id']."'>
<i class='glyphicon glyphicon-thumbs-up'></i>
</a>
</td>
";
}
if ($row['bolsista_alocado'] == $_SESSION['matricula']) {
if (($estado_servico == 'Em andamento') || ($estado_servico == 'Incompleto')){
echo"
<td>
<a title='Rejeitar ocorrência' href='rejeitarOcorrencia.php?o=".$row['id']."'>
<i class='glyphicon glyphicon-thumbs-down'></i>
</a>
</td>
<td>
<a title='Fechar ocorrência' href='fecharOcorrencia.php?o=".$row['id']."'>
<i class='glyphicon glyphicon-check'></i>
</a>
</td>
";
} else if ($estado_servico == 'Fechado') {
echo"
<td>
</td>
<td></td>";
}
} else if ($row['bolsista_alocado'] != $_SESSION['matricula']){
echo"
<td></td>";
}
} else if ($_SESSION['tipo_usuario'] != 2){
if ($row['Usuario_matricula'] != $_SESSION['matricula']){
echo "<td></td><td></td>";
}
}*/
echo "<td>
<a title='Ver usuário' target='_blank' href='verUsuario.php?m=".$row['Usuario_matricula']."'>"
. $row['Usuario_matricula']."
</a>
</td>
<td>
<a title='Ver patrimônio' target='_blank' href='verPatrimonio.php?p=".$row['Patrimonio_num_patrimonio']."'>"
. $tipo." Nº ".$row['Patrimonio_num_patrimonio']. "
</a>
</td>
<td> Lab 0" . $row['laboratorio']. " pos. ".$row['num_posicionamento'] ."</td>
<td>" . $estado_servico . "</td>
<td>"; if ($row['data_cadastro']===null){echo "";} else {echo date('H:i d/m/Y', strtotime($row['data_cadastro']));} echo "</td>
<td>"; if ($row['bolsista_alocado']===null){echo "Nenhum";} else {echo "<a title='Ver patrimônio' target='_blank' href='verPatrimonio.php?p=".$row['bolsista_alocado']."'>".$row['bolsista_alocado']."</a>";} echo "</td>";
//<td>"; if ($row['data_cadastro']===null){echo "";} else {echo date('d/m/Y', strtotime($row['data_cadastro']));} echo "</td>
//<td></td>
//<td>"; /*if ($row['data_atualizacao']===null){echo date('d/m/Y', strtotime($row['data_cadastro']));} else {echo date('d/m/Y', strtotime($row['data_atualizacao']));} */ echo "</td>
echo "</tr>";
}
} else echo
" <tr>
<td></td>
<td>". $result."</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>";
unset($listaUser);
?>
</tbody>
</form>
</table>
</div>
</div>
</div><!-- /.row -->
<div class='modal fade' id='modal_excOcorrenciasMultiplos' tabindex='-1' role='dialog' aria-labelledby='modal_excOcorrenciasMultiplosLabel' aria-hidden='true'>
<div class='modal-dialog'>
<div class='modal-content panel-danger'>
<div class='modal-header panel-heading'>
<button type='button' class='close' data-dismiss='modal' aria-hidden='true'>×</button>
<h4 class='modal-title' id='modal_excUsuarioLabel'>Os usuários serão excluídos</h4>
</div>
<div class='modal-body'>
Você realmente deseja excluiros seguintes ocorrências?
<div id="linhas">
<?php
echo
"<script>
function getCheckboxValues() {
var values = [];
var ocorrencias = document.getElementsByName('foo[]');
var cont = 0;
for (var i=0, iLen=ocorrencias.length; i<iLen; i++) {
if (ocorrencias[i].checked) {
values[i]= ocorrencias[i].value;
cont++;
}
}
$('#linhas').html('');
for (i=0;i<values.length; i++){
$('#linhas').append(values[i]+'<br>');
}
}
</script>";
?>
</div>
</div>
<div class="modal-footer">
<form id="confirm" method="POST" action="ocorrencias.php">
<button type="button" class="btn btn-default" data-dismiss="modal">Não</button>
<button id="submit-modal" class="btn btn-danger">Sim</button>
</form>
</div>
</div>
</div>
</div>
<div class='modal fade' id='modal_excOcorrenciaSimples' tabindex='-1' role='dialog' aria-labelledby='modal_excOcorrenciasSimplesLabel' aria-hidden='true'>
<div class='modal-dialog'>
<div class='modal-content panel-danger'>
<div class='modal-header panel-heading'>
<button type='button' class='close' data-dismiss='modal' aria-hidden='true'>×</button>
<h4 class='modal-title' id='modal_excUsuarioLabel'>O usuário será excluído</h4>
</div>
<div class='modal-body'>
Você realmente deseja excluir a conta relacionada à matrícula?
</div>
<div class="modal-footer">
<form id="confirm" method="POST" action="ocorrencias.php">
<input type="hidden" name="IdOcorrencia" id="IdOcorrencia" value=""/>
<button type="button" class="btn btn-default" data-dismiss="modal">Não</button>
<button id="submit-modal" class="btn btn-danger">Sim</button>
</form>
</div>
</div>
</div>
</div>
</div><!-- /#page-wrapper -->
</div><!-- /#wrapper -->
<script language="JavaScript">
$(document).ready(function() {
var $submit = $("#exc").hide(),
$cbs = $('input[name="foo[]"]').click(function() {
$submit.toggle( $cbs.is(":checked") );
});
});
function toggle(source) {
checkboxes = document.getElementsByName('foo[]');
for (var i=0, n=checkboxes.length;i<n;i++) {
checkboxes[i].checked = source.checked;
}
$("#exc").toggle('show');
}
window.addEventListener("DOMContentLoaded", function () {
var confirm = document.getElementById("confirm");
document.getElementById("submit-modal").addEventListener("click", function () {
confirm.submit();
});
});
$(document).on("click", ".abre-excluirModal", function () {
var idPat = $(this).data('id');
$(".modal-footer #IdOcorrencia").val(idPat);
});
function submit()
{
document.forms["ocorrencia"].submit();
}
</script>
</body>
</html>