-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinf.php
316 lines (287 loc) · 14.4 KB
/
inf.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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
<?php
$swCong = 0;
$swPeriodo = 0;
$msg = "";
if (isset($_REQUEST['c']) && ($_REQUEST['c'] != "")) {
try {
require_once("includes/conect_srv.php");
include_once("includes/funciones.php");
include_once("includes/LSiqml.php");
include_once("includes/definicion.php");
$Token = base64_decode($_REQUEST['c']);
$SQL = Seleccionar('uvw_tbl_Congregaciones', 'NumCong', "Token='" . LSiqml($Token) . "'");
$row = sqlsrv_fetch_array($SQL);
if (isset($row['NumCong']) && $row['NumCong'] !== "") {
$NumCong = $row['NumCong'];
$swCong = 1;
//Periodo mas reciente abierto
$ParamPed = array(
"'" . $NumCong . "'"
);
$SQL_Periodo = EjecutarSP('usp_ConsultarUltimoPeriodoCong', $ParamPed);
$row_Periodo = sqlsrv_fetch_array($SQL_Periodo);
$swPeriodo = isset($row_Periodo['IDPeriodo']) ? 1 : 0;
//Grupos de congregacion
$SQL_Grupos = Seleccionar('uvw_tbl_Grupos', 'IDGrupo, NombreGrupo', "NumCong='" . $NumCong . "'", 'NombreGrupo');
//Datos congregación
$SQL_Cong = Seleccionar('uvw_tbl_Congregaciones', 'NombreCongregacion', "NumCong='" . $NumCong . "'");
$row_Cong = sqlsrv_fetch_array($SQL_Cong);
}
} catch (Exception $e) {
echo 'Excepcion capturada: ', $e->getMessage(), "\n";
}
}
// $root = $_SERVER['SERVER_NAME'] . $_SERVER['PHP_SELF'] . '?' . $_SERVER['QUERY_STRING'];
if (isset($_POST['P']) && ($_POST['P'] != "")) { //Insertar registro
try {
$SQL_Grupo = Seleccionar('uvw_tbl_Grupos', '*', "IDGrupo='" . $Grupo . "' and NumCong='" . $NumCong . "'");
$row_Grupo = sqlsrv_fetch_array($SQL_Grupo);
$NomGrupo = $row_Grupo['NombreGrupo'];
$horas = ($_POST['PrAux'] == 1 || ($_POST['IdTipoPub'] == 2 || $_POST['IdTipoPub'] == 4)) ? $_POST['Horas'] : 0;
$ParamInsert = array(
"''",
"'" . $_POST['Publicador'] . "'",
"'" . $_POST['NombrePub'] . "'",
"'" . $_POST['IdTipoPub'] . "'",
"'" . $_POST['IdPrivServicio'] . "'",
"'" . $_POST['PrAux'] . "'",
"'" . $_POST['Predica'] . "'",
"'" . $horas . "'",
"'" . $_POST['Cursos'] . "'",
"'" . $_POST['Comentarios'] . "'",
"'" . $row_Periodo['IDPeriodo'] . "'",
"'" . $_POST['Grupo'] . "'",
"'" . $_POST['NombreGrupo'] . "'",
"'" . $NumCong . "'",
"'0'"
);
$SQL_Insert = EjecutarSP('usp_tbl_Informes', $ParamInsert, $_POST['P']);
if (!$SQL_Insert) {
throw new Exception('Ha ocurrido un error al insertar los informes');
}
sqlsrv_close($conexion);
header('Location:inf.php?c=' . base64_encode($Token) . '&a=' . base64_encode("OK_InfAdd"));
} catch (Exception $e) {
echo 'Excepcion capturada: ', $e->getMessage(), "\n";
}
}
if ($swCong == 0) {
$msg = "Link inválido. Por favor verifique";
} elseif ($swPeriodo == 0) {
$msg = "No hay datos para ingresar informes";
}
// echo $swPeriodo;
// echo $swCong;
?>
<!DOCTYPE html>
<html>
<head>
<?php include("includes/cabecera.php"); ?>
<title>Registro de informe</title>
<?php
if (isset($_GET['a']) && ($_GET['a'] == base64_encode("OK_InfAdd"))) {
echo "<script>
$(document).ready(function() {
Swal.fire({
title: '¡Muchas gracias!',
text: 'Su informe fue guardado exitosamente.',
icon: 'success'
});
});
</script>";
}
?>
<script type="text/javascript">
$(document).ready(function() { //Cargar los combos dependiendo de otros
$("#Grupo").change(function() {
$('.ibox-content').toggleClass('sk-loading', true);
const grupo = document.getElementById('Grupo').value;
$.ajax({
type: "POST",
url: "ajx_cbo_select_ext.php?type=3&id=" + grupo + "&c=<?php echo $NumCong; ?>",
success: function(response) {
$('#Publicador').html(response).fadeIn();
$('#Publicador').trigger('change');
$('.ibox-content').toggleClass('sk-loading', false);
}
});
$.ajax({
url: "ajx_buscar_datos_json_ext.php",
data: {
type: 2,
id: grupo,
c: '<?php echo $NumCong; ?>'
},
dataType: 'json',
success: function(data) {
document.getElementById('NombreGrupo').value = data.NombreGrupo;
$('.ibox-content').toggleClass('sk-loading', false);
}
});
});
$("#Publicador").change(function() {
$('.ibox-content').toggleClass('sk-loading', true);
const publicador = document.getElementById('Publicador').value;
$.ajax({
url: "ajx_buscar_datos_json_ext.php",
data: {
type: 1,
id: publicador,
c: '<?php echo $NumCong; ?>'
},
dataType: 'json',
success: function(data) {
document.getElementById('NombrePub').value = data.NombrePublicador;
document.getElementById('IdTipoPub').value = data.IDTipoPublicador;
document.getElementById('IdPrivServicio').value = data.IDPrivServicio;
$('.ibox-content').toggleClass('sk-loading', false);
}
});
});
});
</script>
</head>
<body>
<div id="wrapper">
<div id="" class="gray-bg">
<div class="row wrapper border-bottom white-bg page-heading">
<div class="col-xs-12 text-center">
<div class="d-flex justify-content-center align-items-center pb-2 mb-4">
<img src="img/logo_150x150.png" alt="Obra Mundial" />
</div>
<h2 class="font-bold">Registre su informe</h2>
<?php if ($swCong == 1 && $swPeriodo == 1) { ?>
<h2 class="text-primary">Congregación: <?php echo $row_Cong['NombreCongregacion']; ?></h2>
<h2 class="text-success">Mes: <?php echo $row_Periodo['NombreMes'] . "/" . $row_Periodo['AnioPeriodo']; ?></h2>
<?php } else { ?>
<h2 class="text-danger"><?php echo $msg; ?></h2>
<?php } ?>
</div>
</div>
<?php if ($swCong == 1 && $swPeriodo == 1) { ?>
<div class="wrapper wrapper-content">
<div class="ibox-content">
<?php include("includes/spinner.php"); ?>
<div class="row">
<div class="col-lg-12">
<form action="inf.php" method="post" class="form" enctype="multipart/form-data" id="frmInforme">
<div class="form-group">
<label>Grupo de predicación</label>
<select name="Grupo" class="form-control" id="Grupo" required="required">
<option value="">Seleccione...</option>
<?php while ($row_Grupos = sqlsrv_fetch_array($SQL_Grupos)) { ?>
<option value="<?php echo $row_Grupos['IDGrupo']; ?>"><?php echo $row_Grupos['NombreGrupo']; ?></option>
<?php } ?>
</select>
</div>
<div class="form-group">
<label>Nombre</label>
<select name="Publicador" class="form-control select2" id="Publicador" required="required">
<option value="">Seleccione...</option>
</select>
</div>
<div class="form-group">
<label>¿Partició en alguna faceta de la predicación este mes?</label>
<select name="Predica" class="form-control" id="Predica" required="required">
<option value="">Seleccione...</option>
<option value="1">SI</option>
<option value="0">NO</option>
</select>
</div>
<div class="form-group">
<label>¿Fue precursor auxiliar este mes?</label>
<select name="PrAux" class="form-control" id="PrAux" required="required">
<option value="0">NO</option>
<option value="1">SI</option>
</select>
</div>
<div class="form-group">
<label>Número de <span class="font-italic">diferentes</span> cursos bíblicos dirigidos</label>
<input name="Cursos" type="number" maxlength="2" class="form-control" id="Cursos" value="" onKeyUp="revisaCadena(this);" onKeyPress="return justNumbers(event,this.value);">
</div>
<div class="form-group">
<label>Horas (solo para precursores auxiliares y regulares)</label>
<input name="Horas" type="number" maxlength="2" class="form-control" id="Horas" value="" onKeyUp="revisaCadena(this);" onKeyPress="return justNumbers(event,this.value);">
</div>
<div class="form-group">
<label>Comentarios</label>
<textarea name="Comentarios" rows="3" class="form-control" id="Comentarios"></textarea>
</div>
<div class="form-group">
<div class="col-xs-12">
<input type="hidden" id="P" name="P" value="301" />
<input type="hidden" id="c" name="c" value="<?php echo base64_encode($Token); ?>" />
<input type="hidden" id="NombrePub" name="NombrePub" value="" />
<input type="hidden" id="IdTipoPub" name="IdTipoPub" value="" />
<input type="hidden" id="IdPrivServicio" name="IdPrivServicio" value="" />
<input type="hidden" id="NombreGrupo" name="NombreGrupo" value="" />
<button class="btn btn-success btn-block btn-lg" form="frmInforme" type="submit" id="Crear"><i class="fa fa-user-circle" aria-hidden="true"></i> Registrar mi informe</button>
</div>
</div>
</form>
</div>
</div>
</div>
<?php } ?>
</div>
</div>
</div>
<?php include("includes/pie.php"); ?>
<script>
$(document).ready(function() {
$("#frmInforme").validate({
submitHandler: function(form) {
if (validarDatos()) {
Swal.fire({
title: "¿Está seguro que desea enviar su informe?",
icon: "question",
showCancelButton: true,
confirmButtonText: "Si, enviar",
cancelButtonText: "No"
}).then((result) => {
if (result.isConfirmed) {
$('.ibox-content').toggleClass('sk-loading', true);
form.submit();
}
});
} else {
$('.ibox-content').toggleClass('sk-loading', false);
}
}
});
$(".alkin").on('click', function() {
$('.ibox-content').toggleClass('sk-loading');
});
$(".select2").select2();
});
</script>
<script>
function validarDatos() {
let result = true;
const prAux = document.getElementById("PrAux")
const horas = document.getElementById("Horas")
const tipoPub = document.getElementById("IdTipoPub")
if (((prAux.value == 1) || (tipoPub.value == 2) || (tipoPub.value == 4)) && ((Number(horas.value) === 0) || (horas.value === ""))) {
// console.log(`Entro con curso en ${curso.value} y horas en ${horas.value}`)
//Alertar que debe tener horas
result = false
Swal.fire({
title: "¡Usted es precursor!",
text: "Por favor ingrese las horas que correspondan.",
icon: "warning",
});
}else if ((prAux.value == 1) && ((tipoPub.value == 2) || (tipoPub.value == 4))) {
//Alertar que si es precursor, no debe marcar el auxiliar
result = false
Swal.fire({
title: "¡Usted no es Precursor Auxiliar!",
text: "Debe poner Precursor Auxiliar en NO.",
icon: "warning",
});
}
return result;
}
</script>
</body>
<!-- InstanceEnd -->
</html>