-
Notifications
You must be signed in to change notification settings - Fork 0
/
realizar_inventario.php
156 lines (142 loc) · 5.71 KB
/
realizar_inventario.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
<?php
require_once('includes/load.php');
$page_title = 'Abrir Inventário';
// Checkin What level user has permission to view this page
page_require_level(2);
$all_types_equip = find_all('types_equips');
$all_manufacturer = find_all('manufacturers');
$all_situation = find_all('situations');
$all_sector = find_all('sectors');
//Exibir dados
if(isset($_POST['submit'])):
$equip_tombo = remove_junk($db->escape($_POST['equipment-tombo']));
$equip_specifications = remove_junk($db->escape($_POST['equipment-specifications']));
$equip_responsible_user = remove_junk($db->escape($_POST['equipment-responsible_user']));
$equip_transfer = remove_junk($db->escape($_POST['equipment-transfer']));
$equip_type_equip = remove_junk($db->escape($_POST['equipment-type_equip']));
$equip_sector = remove_junk($db->escape($_POST['equipment-sector']));
$equip_manufacturer = remove_junk($db->escape($_POST['equipment-manufacturer']));
$equip_situation = remove_junk($db->escape($_POST['equipment-situation']));
$all_equips = issue_reports($equip_tombo, $equip_specifications, $equip_responsible_user, $equip_transfer, $equip_type_equip, $equip_sector, $equip_manufacturer, $equip_situation);
endif;
?>
<?php include_once('layouts/header.php'); ?>
<div class="row">
<div class="col-md-6">
<?= display_msg($msg); ?>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading clearfix text-center">
<strong>
<span class="glyphicon glyphicon-th"></span>
<span>Realizar Inventário</span>
</strong>
</div>
<div class="panel-body">
<form class="clearfix" method="post" action="relatorios.php">
<div class="form-group">
<div class="row">
<div class="col-md-4">
<select id="sector" class="form-control" name="equipment-sector" style="/* display: none; */">
<option value="">Setor</option>
<?php foreach ($all_sector as $sector): ?>
<option value="<?= (int)$sector['id'] ?>">
<?= $sector['name'] ?></option>
<?php endforeach; ?>
</select>
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<div class="col-md-4">
<select class="form-control" name="equipment-manufacturer">
<option value="">Fabricante</option>
<?php foreach ($all_manufacturer as $man): ?>
<option value="<?= (int)$man['id'] ?>">
<?= $man['name'] ?></option>
<?php endforeach; ?>
</select>
</div>
<div class="col-md-4">
<select class="form-control" name="equipment-situation">
<option value="">Situação</option>
<?php foreach ($all_situation as $sit): ?>
<option value="<?= (int)$sit['id'] ?>">
<?= $sit['name'] ?></option>
<?php endforeach; ?>
</select>
</div>
</div>
</div>
<div class="form-group">
<button type="submit" name="submit" class="btn btn-primary">Abrir Inventário</button>
</div>
</form>
</div>
</div>
</div>
</div>
<?php if(!empty($all_equips)): ?>
<div class="row">
<div class="col-md-12">
<table class="table table-border table-striped datatable-button-active">
<thead>
<tr class="info">
<th>#</th>
<th>Tombo</th>
<th>Tipo de Equipamento</th>
<th>Especificações</th>
<th>Usuário Responsável</th>
<th>Setor</th>
<th>Fabricante</th>
<th>Situação</th>
<th>Observação</th>
<th class="none">Término da Garantia</th>
<th class="none">Transferido?</th>
</tr>
</thead>
<tbody>
<?php foreach($all_equips as $result): ?>
<tr>
<td><?= count_id(); ?></td>
<td><?= remove_junk($result['tombo']);?></td>
<td><?= remove_junk($result['types_equip']);?></td>
<td><?= remove_junk($result['specifications']);?></td>
<td><?php if(is_null($result['responsible_user'])): echo "Não Informado"; else: echo remove_junk($result['responsible_user']); endif; ?></td>
<td><?php if(is_null($result['sector'])): echo "SEM SETOR"; else: echo remove_junk($result['sector']); endif; ?></td>
<td><?= remove_junk($result['manufacturer']);?></td>
<td><?= remove_junk($result['situation']);?></td>
<td><?= remove_junk($result['obs']);?></td>
<td><?php if(is_null($result['warranty'])): echo "Sem Garantia"; else: echo strftime('%d/%m/%Y', strtotime($result['warranty'])); endif; ?></td>
<td><?php if(empty($result['sector'])): echo "Não"; else: echo "Sim"; endif;?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
</div>
<?php
elseif(isset($all_equips)):
$output = "<div class=\"alert alert-danger\">";
$output .= "<a href=\"#\" class=\"close\" data-dismiss=\"alert\">×</a>";
$output .= "Desculpe, nenhum equipamento encontrado!";
$output .= "</div>";
echo $output;
endif;
?>
<?php
/*
$scripts .= "
$('#sector').hide();
$('#transfers').change(function(){
if($('#transfers').val() == 2) $('#sector').show();
else $('#sector').hide();
});
"
*/
?>
<?php include_once('layouts/footer.php'); ?>