-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindicadores_filtro_acervos.php
142 lines (110 loc) · 3.2 KB
/
indicadores_filtro_acervos.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
<?php
?>
<?php include "header.php"; ?>
<?php
if(isset($_GET['p'])){
$p = $_GET['p'];
}else{
$p = 'inicio';
}
//session_start(); // carrega a sessão
?>
<?php
error_reporting(0);
ini_set(“display_errors”, 0 );
?>
<body>
<?php include "menu/me_indicadores.php"; ?>
<main class="col-sm-9 offset-sm-3 col-md-10 offset-md-2 pt-3">
<?php
switch($p){
case "inicio": ?>
<?php
if(isset($_GET['ano_base']) AND $_GET['ano_base'] != 0 ){
$ano_base = $_GET['ano_base'];
$sql_ano_base = " AND ano_base = '$ano_base' ";
}else{
$ano_base = NULL;
$sql_ano_base = "";
}
?>
<div class="row">
<div class="col-md-offset-2 col-md-8">
<h3>Acervos - Visualizar Relatórios</h3>
<p><?php if(isset($mensagem)){echo $mensagem;} ?></p>
<div class="col-md-offset-1 col-md-10">
<form method="GET" action="?" class="form-horizontal" role="form">
<div class="form-group">
<div class="col-md-offset-2">
<label>Ano Base *</label>
<select class="form-control" name="ano_base" id="inputSubject" >
<option value='0'>Escolha uma opção</option>
<?php
anoBaseIndicadores("sc_ind_acervos",$ano_base);
?>
</select>
</div>
</div>
<div class="form-group">
<div class="col-md-offset-2">
<input type="submit" class="btn btn-theme btn-sm btn-block" value="Aplicar">
</form>
</div>
</div>
</div>
</div>
<?php
$sel = "SELECT * FROM sc_ind_acervos WHERE publicado = '1' $sql_ano_base ORDER BY periodo_inicio DESC";
$ocor = $wpdb->get_results($sel,ARRAY_A);
if(count($ocor) > 0){
?>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>Período</th>
<th>Museu - Total Itens no Acervo</th>
<th>Museu - Acervos/Produtos Digitalizados</th>
<th>Museu - Acervos/Produtos Disponibilizados</th>
<th>Arte Contemporânea - Total Itens no Acervo</th>
<th>Arte Contemporânea - Acervos/Produtos Digitalizados</th>
<th>Arte Contemporânea - Acervos/Produtos Disponibilizados</th>
<th width="10%"></th>
<th width="10%"></th>
</tr>
</thead>
<tbody>
<?php
for($i = 0; $i < count($ocor); $i++){
?>
<tr>
<td><?php echo exibirDataBr($ocor[$i]['periodo_inicio']) ?> a <?php echo exibirDataBr($ocor[$i]['periodo_fim']) ?> </td>
<td><?php echo $ocor[$i]['museu_total']?></td>
<td><?php echo$ocor[$i]['museu_digitalizados'] ?></td>
<td><?php echo$ocor[$i]['museu_disponiveis'] ?></td>
<td><?php echo$ocor[$i]['artec_total'] ?></td>
<td><?php echo$ocor[$i]['artec_digitalizados'] ?></td>
<td><?php echo$ocor[$i]['artec_disponiveis'] ?></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
<?php } else { ?>
<div class="row">
<div class="col-md-offset-2 col-md-8">
<p> Não há relatórios cadastrados. </p>
</div>
</div>
<?php } ?>
<?php
break;
} // fim da switch p
?>
</main>
</div>
</div>
<?php
include "footer.php";
?>