-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathequipamentos.php
296 lines (288 loc) · 11.5 KB
/
equipamentos.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
<?php
$pageTitle =
include 'classes/usuario.class.php';
include 'classes/log.class.php';
include 'classes/ocorrencia.class.php';
include 'classes/equipamento.class.php';
include 'classes/categoria.class.php';
$pageTitle = "Equipamentos · Visão Geral";
include 'nucleo/cabecario.php';
include("nucleo/barraLateral.php");
date_default_timezone_set("America/Bahia");
if (($_SESSION['tipo_usuario'] != "1") && ($_SESSION['tipo_usuario'] != "2")){
header("Location: ../restart/painel.php");
exit;
}
if (isset($_POST['filtro'])){
$filtro = $_POST['filtro'];
} else {
$filtro = 0;
}
if (!empty($_POST)) {
$LOG = new LOG;
if (isset($_POST['IdEquipamento'])) {
$id = $_POST['IdEquipamento'];
$objEquipamento = new Equipamento;
$result = $objEquipamento->deletarEquipamento($id);
if (is_bool($result)) {
echo "<!-- Modal -->
<div class='modal fade bs-modal-sm' id='modal_excEquipamento' tabindex='-1' role='dialog' aria-labelledby='modal_excEquipamentoLabel' 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_excEquipamentoLabel'>Equipamento excluído!</h4>
</div>
</div>
</div>
</div>";
$LOG->gerarLOG($_SESSION['matricula'], $_SERVER['REMOTE_ADDR'], 'DEL_EQU', $result);
}
else {
echo "<!-- Modal -->
<div class='modal fade' id='modal_excEquipamento' tabindex='-1' role='dialog' aria-labelledby='modal_excEquipamentoLabel' 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_excEquipamentoLabel'>Não foi possível excluir o Equipamento</h4>
</div>
<div class='modal-body'>
<p>".$result."</p>
</div>
</div>
</div>
</div>";
}
unset($objEquipamento);
echo "<script>$('#modal_excEquipamento').modal('show');</script>";
}
}
?>
<div id="page-wrapper">
<div class="row">
<div class="col-lg-6">
<h1>Equipamentos <small>Visão geral</small></h1>
</div>
<div class="col-lg-6" align="right">
<?php if($_SESSION['tipo_usuario'] == 1) {echo "<a href='categorias.php'><button type='button' class='btn btn-default'><i class='glyphicon glyphicon-tag'></i> Categorias</button></a>";}?>
<a href="cadEquipamento.php"><button type="button" class="btn btn-primary"><i class="glyphicon glyphicon-plus-sign"></i> Novo equipamento</button></a>
</div>
</div><!-- /.row -->
<div class="row">
<div class="col-lg-12">
<ol class="breadcrumb">
<li class="active"><i class="glyphicon glyphicon-hdd"></i> Equipamentos</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="Equipamentos.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>
<?php
$cat = new Categoria;
$result = $cat->listarCategoria();
foreach ($result as $row) {
echo " <option"; if ($filtro == $row['id']){echo " selected ";} else {echo "";} echo " value='".$row['id']."'> ".$row['nome']."</option>";
}
unset($cat);
?>
</select>
</form>
</td>
<td>
<a data-toggle='modal' data-id='".$row['matricula']."' href='#modal_excEquipamentoMultiplos' 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-striped table-hover">
<p>
<tr>
<th></th>
<th colspan="3">Operações</th>
<th>ID</th>
<th>Categoria</th>
<th>Modelo</th>
<th>Imagem de HD</th>
<th>Processador</th>
<th>Memória RAM</th>
<th>HD</th>
<th>Vencimento da garantia</th>
</tr>
<tbody>
<?php
$listaEquipamento = new Equipamento;
$result = $listaEquipamento->listarEquipamentos($filtro);
if (is_array($result)) {
foreach ($result as $row) {
$timestampNow = strtotime('now');
$timestampvalidade = strtotime($row['vencimento_garantia']);
if ($row['modelo_processador'] == '0'){
$modelo_processador = "Não possui";
} else {$modelo_processador = $row['modelo_processador'];}
if ($row['capacidade_ram'] == '0'){
$capacidade_ram = "Não possui";
} else {$capacidade_ram = $row['capacidade_ram'];}
if ($row['capacidade_hd'] == '0'){
$capacidade_ram = "Não possui";
} else {$capacidade_hd = $row['capacidade_hd'];}
if ($row['Imagem_HD_id'] == NULL){
$Imagem_HD_id = "Não possui";
} else {$Imagem_HD_id = "Nº ".$row['Imagem_HD_id'];}
echo "<tr id='fooTr'>";
echo "
<td ><input type='checkbox' name='foo[]' id='foo[]' value='".$row['id']."'></td>
<td>
<a title='Ver Equipamento' href='verEquipamento.php?e=".$row['id']."'>
<i class='glyphicon glyphicon-search'></i>
</a>
</td>
<td>
<a title='Editar Equipamento' href='alterarEquipamento.php?e=".$row['id']."'>
<i class='glyphicon glyphicon-pencil'></i>
</a>
</td>
<td>
<a title='Excluir Equipamento' data-toggle='modal' data-id='".$row['id']."' href='#modal_excEquipamentoSimples' class='abre-excluirModal'>
<i class='glyphicon glyphicon-remove'></i>
</a>
</td>
<td>" . $row['id'] . "</td>
<td>" . $row['nome_categoria'] . "</td>
<td>" . $row['modelo'] . "</td>
<td> " . $Imagem_HD_id . "</td>
<td>" . $modelo_processador . "</td>
<td>" . $capacidade_ram . "</td>
<td>" . $capacidade_hd . "</td>
<td>"; if ($row['vencimento_garantia']===null){echo "";} else {echo date('d/m/Y', strtotime($row['vencimento_garantia']));} echo "</td>
</tr>";
}
} else echo
" <tr>
<td></td>
<td>". $result."</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>";
unset($listaUser);
?>
</tbody>
</table>
</div>
</div>
</div><!-- /.row -->
<div class='modal fade' id='modal_excEquipamentosMultiplos' tabindex='-1' role='dialog' aria-labelledby='modal_excEquipamentosMultiplosLabel' 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 Equipamentos?
<div id="linhas">
<?php
echo
"<script>
function getCheckboxValues() {
var values = [];
var Equipamentos = document.getElementsByName('foo[]');
var cont = 0;
for (var i=0, iLen=Equipamentos.length; i<iLen; i++) {
if (Equipamentos[i].checked) {
values[i]= Equipamentos[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="Equipamentos.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_excEquipamentoSimples' tabindex='-1' role='dialog' aria-labelledby='modal_excEquipamentosSimplesLabel' 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 equipamento será excluído</h4>
</div>
<div class='modal-body'>
Você realmente deseja excluir o lote deste equipamento?
</div>
<div class="modal-footer">
<form id="confirm" method="post" action="Equipamentos.php">
<input type="hidden" name="IdEquipamento" id="IdEquipamento" 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 #IdEquipamento").val(idPat);
});
</script>
</body>
</html>