-
Notifications
You must be signed in to change notification settings - Fork 0
/
setor_abrir_chamado.php
238 lines (188 loc) · 11.4 KB
/
setor_abrir_chamado.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
<?php
if(!isset($_SESSION)){
session_start();
}else{
session_destroy();
session_start();
}
$usuario = $_SESSION['user_name'];
if(isset($usuario) && !is_numeric($usuario)){
require('./config/config.php');
$link = new mysqli('localhost', 'root', '', 'help_desk_ecos');
$link->set_charset('utf8');
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HELP-ECOS | Sistema de Apoio às Escolas</title>
<!-- ############################################### SEARCH SELECT ################################################## -->
<link href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" />
<!--<link href="//cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.6.3/css/bootstrap-select.min.css" rel="stylesheet" />-->
<!-- ############################################### SEARCH SELECT ################################################## -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="assets/materialize/css/materialize.min.css" media="screen,projection" />
<!-- Bootstrap Styles-->
<link href="assets/css/bootstrap.css" rel="stylesheet" />
<!-- FontAwesome Styles-->
<link href="assets/css/font-awesome.css" rel="stylesheet" />
<!-- Morris Chart Styles-->
<link href="assets/js/morris/morris-0.4.3.min.css" rel="stylesheet" />
<!-- Custom Styles-->
<link href="assets/css/custom-styles.css" rel="stylesheet" />
<!-- Search select -->
<link href="dist/css/bootstrap-select.min.css" rel="stylesheet" />
<!-- Google Fonts-->
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css' />
<link rel="stylesheet" href="assets/js/Lightweight-Chart/cssCharts.css">
</head>
<!-- Populate option -->
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="js.js"></script>
<script type="text/javascript" src="js2.js"></script>
<body>
<?php include("setor_menu.php"); ?>
<!-- /. NAV SIDE -->
<div id="page-wrapper" >
<div class="header">
<h1 class="page-header">Novo Chamado</h1>
<ol class="breadcrumb">
<li>Abra um chamado de emergência (protocolo CG..., JP..., SS...) ou programado (protocolo CGEX..., JPEX..., SSEX...).</li>
</ol>
</div>
<div id="page-inner">
<div class="row">
<div class="col-md-3"></div>
<div class="col-md-6">
<center>
<div class="card"">
<div class="card-action">Selecione a escola e depois o motivo do chamado</div>
<div class="card-content">
<form class="col s12" name="form-pesquisa" action="executions/setor_grava_chamado.php" method="post">
<div class="row">
<div class="input-field col s3">
<label for="emergencia">DATA ABERTURA: </label>
</div>
</div>
<div class="row">
<div class="input-field col s3">
<input type="date" name="data" required>
</div>
</div>
<div class="row">
<div class="input-field">
<?php
// get active sede user
$query_get_sede = "SELECT sede, user_sede FROM sede WHERE user_sede = '$usuario'";
$result_id = $link->query($query_get_sede) or die(mysqli_error($link));
while($row_id = mysqli_fetch_assoc($result_id)){
$sede = $row_id['sede'];
}
?>
<!-- ############################################### SEARCH SELECT ################################################## -->
<select name="escola" class="selectpicker" data-show-subtext="true" data-live-search="true" id="escola">
<?php
echo "<option value='0'>Escola...</option>";
if ($sede === '0') {
$sql = "SELECT * FROM escola AS E INNER JOIN gre AS G ON E.gre = G.id_gre WHERE E.ativo = 1";
}else{
if($sede === '1'){
$sql = "SELECT * FROM escola AS E INNER JOIN gre AS G ON E.gre = G.id_gre WHERE G.id_sede = '$sede' OR E.id_escola = 70 AND E.ativo = 1";
}else{
$sql = "SELECT * FROM escola AS E INNER JOIN gre AS G ON E.gre = G.id_gre WHERE G.id_sede = '$sede' AND E.ativo = 1";
}
}
$dados = mysqli_query($link, $sql);
$c = 0;
if(mysqli_num_rows($dados) > 0) {
while($row = mysqli_fetch_object($dados)) {
echo "<option value='".$row->id_escola."'>".$row->nome_escola."</option>";
}
}
?>
</select>
</div>
</div>
<div class="row">
<div class="input-field">
<select class="form-control" name="motivo" id="motivo" required="">
<?php
echo "<option value='0'>Categoria...</option>";
$sql = "SELECT * FROM motivo_chamado ORDER BY motivo";
$dados = mysqli_query($link, $sql);
if(mysqli_num_rows($dados) > 0) {
while($row = mysqli_fetch_object($dados)) {
echo "<option value='".$row->id_motivo."'>".$row->motivo."</option>";
}
}
?>
</select>
</div>
</div>
<div class="row">
<div class="input-field">
<select class="form-control" name="sub_motivo" id="sub_motivo" required=""></select>
</div>
</div>
<div class="row">
<p>
<input type="radio" name="tipo" id="emergencia" value="emergencia" >
<label for="emergencia">Emergência</label>
<input type="radio" name="tipo" id="programado" value="programado" >
<label for="programado">Programado</label>
</p>
</div>
<div class="row">
<div class="input-field col s12">
<textarea class="form-control" rows="5" name="obs_op" placeholder="Observações do operador:" maxlength="10000"></textarea>
</div>
</div>
<div>
<button type="submit" class="waves-effect waves-light btn" id="submit">Abrir Chamado</button>
</div>
</form>
<div class="clearBoth"></div>
</div>
</div>
</div>
</center>
</div>
<div class="col-md-3"></div>
</div>
<!-- /.col-lg-12 -->
</div>
<!-- /. PAGE INNER -->
</div>
<!-- /. PAGE WRAPPER -->
</div>
<!-- /. WRAPPER -->
<!-- JS Scripts-->
<!-- jQuery Js -->
<script src="assets/js/jquery-1.10.2.js"></script>
<!-- Bootstrap Js -->
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/materialize/js/materialize.min.js"></script>
<!-- Metis Menu Js -->
<script src="assets/js/jquery.metisMenu.js"></script>
<!-- Morris Chart Js -->
<script src="assets/js/morris/raphael-2.1.0.min.js"></script>
<script src="assets/js/morris/morris.js"></script>
<script src="assets/js/easypiechart.js"></script>
<script src="assets/js/easypiechart-data.js"></script>
<script src="assets/js/Lightweight-Chart/jquery.chart.js"></script>
<!-- Custom Js -->
<script src="assets/js/custom-scripts.js"></script>
<!-- Search select -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.6.3/js/bootstrap-select.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.js" defer></script>
<script src="dist/js/bootstrap-select.js" defer></script>
</body>
</html>
<?php
}else{
header("location: ./index.php");
exit();
}
?>