-
Notifications
You must be signed in to change notification settings - Fork 0
/
reportEquipamento.php
206 lines (183 loc) · 9.52 KB
/
reportEquipamento.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
<?php
require_once('config.php');
if(empty($_SESSION['key'])) {
header ('location:./');
}
$m = 0;
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<title><?php echo $cfg['titulo']; ?></title>
<link rel="icon" type="image/png" href="img/favicon.png">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/ionicons.min.css">
<link rel="stylesheet" href="css/skin-blue.min.css">
<link rel="stylesheet" href="css/core.min.css">
<style media="print">
* {
overflow: visible !important;
}
body {
font-size: 0.9em;
}
h2.page-header {
font-size: 1.8em;
vertical-align: middle;
}
.logo img {
width: 100px !important;
}
</style>
<!--[if lt IE 9]><script src="js/html5shiv.min.js"></script><script src="js/respond.min.js"></script><![endif]-->
</head>
<body>
<div class="wrapper">
<section class="invoice">
<div class="row print-head">
<div class="col-xs-12">
<h2 class="page-header">
<span>Relatório dos equipamentos</span>
<!--<span class="logo"><img src="img/logo.png" title="Embracore, Ltda." alt="Embracore, Ltda." style="height: 80px;"></span>-->
<div class="pull-right text-right">
<small><i class="fa fa-globe"></i> Secretaria da Saúde de Camboriú</small>
</div>
</h2>
</div>
</div>
<?php
include_once('conexao.php');
try {
$mostra = 'T';
$sql = $pdo->prepare("SELECT idequipamento,cliente_idcliente AS idcliente,unidade,sala,nome,patrimonio,sistema,serial,placamae,cpu,memoria,disco,lan_1,lan_2,wlan FROM equipamento WHERE mostra = :mostra ORDER BY unidade,sala,nome,patrimonio,sistema");
$sql->bindParam(':mostra', $mostra, PDO::PARAM_STR);
$sql->execute();
$ret = $sql->rowCount();
if($ret > 0) {
$pyidequipamento = md5('idequipamento');
while($lin = $sql->fetch(PDO::FETCH_OBJ)) {
switch($lin->unidade) {
case 'Farmacia MonteAlegre':
$lin->unidade = 'Farmácia Monte Alegre';
break;
case 'Manutencao':
$lin->unidade = 'Manutenção';
break;
case 'Policlinica':
$lin->unidade = 'Policlínica';
break;
case 'UBS JoaoMendes':
$lin->unidade = 'UBS João Mendes';
break;
case 'UBS RioPequeno':
$lin->unidade = 'UBS Rio Pequeno';
break;
case 'UBS SantaRegina':
$lin->unidade = 'UBS Santa Regina';
break;
case 'UC Braco':
$lin->unidade = 'UC Braço';
break;
case 'UC Varzea':
$lin->unidade = 'UC Várzea';
break;
}
if(!empty($lin->lan_2)) {
$lan_2 = '<p><strong>LAN 2:</strong> '.$lin->lan_2.'</p>';
} else {
$lan_2 = '';
}
if(!empty($lin->wlan)) {
$wlan = '<p><strong>WLAN:</strong> '.$lin->wlan.'</p>';
} else {
$wlan = '';
}
echo'
<div class="row invoice-info">
<div class="col-xs-4">
<p><strong>Unidade:</strong> '.$lin->unidade.'</p>
<p><strong>Sala:</strong> '.$lin->sala.'</p>
<p><strong>Nome:</strong> '.$lin->nome.'</p>
<p><strong>Patrimônio:</strong> '.$lin->patrimonio.'</p>
</div>
<div class="col-xs-4">
<p><strong>Sistema:</strong> '.$lin->sistema.'</p>
<p><strong>Serial:</strong> '.$lin->serial.'</p>
<p><strong>Placa mãe:</strong> '.$lin->placamae.'</p>
<p><strong>CPU:</strong> '.$lin->cpu.'</p>
</div>
<div class="col-xs-4">
<p><strong>Memória:</strong> '.$lin->memoria.'</p>
<p><strong>Disco:</strong> '.$lin->disco.'</p>
<p><strong>LAN 1:</strong> '.$lin->lan_1.'</p>
'.$lan_2.'
'.$wlan.'
</div>
</div>
<hr>';
}
unset($lin,$pyidequipamento,$lan_2,$wlan);
}
else {
echo'
<div class="callout">
<h4>Nada encontrado</h4>
<p>Nenhum registro foi encontrado.</p>
</div>';
}
unset($sql,$mostra);
}
catch(PDOException $e) {
echo 'Erro ao conectar o servidor '.$e->getMessage();
}
?>
</section>
</div>
<script src="js/jquery-2.1.4.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/core.min.js"></script>
<script>
$(function() {
/* PRINT */
<?php if(!empty($ret)) { ?>
$(window).load(function () {
window.onafterprint = function(e){
$(window).off('mousemove', window.onafterprint);
location.href = 'equipamento.php';
};
window.print();
setTimeout(function(){
$(window).on('mousemove', window.onafterprint);
}, 1);
/* Esse método é o correto, mas no Chrome não funciona.
print();
var beforePrint = function() {
console.log('Antes de imprimir...');
};
var afterPrint = function() {
console.log('Depois de imprimir...');
location.href = 'inicio.php';
};
if (window.matchMedia) {
var mediaQueryList = window.matchMedia('print');
mediaQueryList.addListener(function(mql) {
if (mql.matches) {
beforePrint();
} else {
afterPrint();
}
});
}
window.onbeforeprint = beforePrint;
window.onafterprint = afterPrint;*/
});
<?php } ?>
});
</script>
</body>
</html>
<?php unset($cfg,$ret,$m); ?>