-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpanel-participantes-roles.php
828 lines (702 loc) · 28.4 KB
/
panel-participantes-roles.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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
<?php
include_once('config.php');
$q = (isset($_GET['q'])) ? $_GET['q'] : ROL_NEW;
switch ($q) {
case 'admin':
$viewRol = ROL_ADMIN;
$view = 'ADMINISTRADORES';
break;
case 'super':
$viewRol = ROL_SUPERVISOR;
$view = 'SUPERVISORES';
break;
case 'jefe':
$viewRol = ROL_JEFE;
$view = 'JEFES';
break;
case 'user':
$viewRol = ROL_USER;
$view = 'PARTICIPANTES';
break;
case 'search':
$nom = (isset($_POST['txtNombre'])) ? $_POST['txtNombre'] : '';
$doc = (isset($_POST['txtDocumento'])) ? $_POST['txtDocumento'] : '';
$distro = (isset($_POST['cboBuscarDistro'])) ? $_POST['cboBuscarDistro'] : '';
$ciudad = (isset($_POST['cboBuscarSucursal'])) ? $_POST['cboBuscarSucursal'] : '';
$sexo = (isset($_POST['opSexo'])) ? $_POST['opSexo'] : '';
$filter = array('nom' => $nom, 'doc' => $doc, 'distro' => $distro, 'ciudad' => $ciudad, 'sexo' => $sexo );
$view = 'BUSQUEDA: '. $nom. ' '. $doc;
break;
case 'perfil':
$perfil_id = (isset($_GET['s'])) ? $_GET['s'] : -1;
$view = 'PERFILES';
break;
default:
$viewRol = ROL_NEW;
$view = 'NUEVOS USUARIOS';
break;
}
if ( (isset($_SESSION['username'])) && ( $_SESSION['rol'] == ROL_ADMIN || $_SESSION['rol'] == ROL_JEFE ) ){
include_once('jupiter/code/fxModelo.php');
include_once('jupiter/code/fxVista.php');
include_once('jupiter/code/db_procter.php');
if ( $_SESSION['rol'] == ROL_ADMIN ){
$resultados = ($q !== 'search') ? ( ($q == 'perfil') ? getUsuariosByPerfil($perfil_id, $db) : getUsuariosByType($viewRol, $db) ) : getUsuariosBySearch($filter, $db);
$tblUsuarios = genUsuariosTRRoles($resultados);
} elseif ( $_SESSION['rol'] == ROL_SUPERVISOR ){
$resEquipos = getEquiposBySupervisor($_SESSION['userID'], $db);
$filterUser = getUsuariosAllTeamBySupervisor($resEquipos, $db);
$resultados = ($q !== 'search') ? getUsuariosByFilter($filterUser, $db) : getUsuariosBySearch($filter, $db);
$tblUsuarios = genUsuariosTRRoles($resultados);
} elseif ( $_SESSION['rol'] == ROL_JEFE ) {
$supJefe = getSupByJefe($_SESSION['userID'], $db);
$resEquipos = getEquiposAllByJefe($supJefe, $db);
$filterUser = getUsuariosAllTeamBySupervisor($resEquipos, $db);
$resultados = array();
if ($q == 'search'){
$resultados = getUsuariosBySearch($filter, $db);
} elseif ($q == 'user') {
$resultados = getUsuariosByFilter($filterUser, $db);
} elseif ($q == 'super') {
$resultados = getUsuariosByFilter($supJefe, $db);
} elseif ($q == 'new') {
$resultados = getUsuariosByType(ROL_NEW, $db);
}
$tblUsuarios = genUsuariosTRRoles($resultados);
};
if ( $_SESSION['rol'] == ROL_JEFE ){
$resSuperJefe = getSupByJefe($_SESSION['userID'], $db);
$resSuper = getUsuariosByFilter($resSuperJefe, $db);
$perfil = getSupervisorRel($_SESSION['userID'], 'perfil_sup', $db);
} else {
$resSuper = getUsuariosByType(ROL_SUPERVISOR, $db);
$perfil = -1;
}
$opSuper = genUsuariosOP($resSuper, null);
$loc_d = -1;
$loc_s = -1;
$readonly = '';
if ( $_SESSION['rol'] == ROL_SUPERVISOR || $_SESSION['rol'] == ROL_JEFE ){
$readonly = ' readonly="readonly" disabled="true" ';
$sup_loc = getLocationUser($_SESSION['userID'], $db);
$loc_d = $sup_loc['distributor_id'];
$loc_s = $sup_loc['subsidiary_id'];
}
$resDis = getDistribuidoras($db);
$opDistribuidoras = genDistribuidorasOP($resDis, $loc_d);
$resSuc = getSucursalesFull($db);
$opSucursales = genSucursalesOP($resSuc, $loc_s);
$opRol = genRolOP($_SESSION['rol']);
$resPerfil = getPerfilesFull($db);
$opPerfil = genPerfilesOP($resPerfil, $perfil);
$liPerfil = genPerfilesLI($resPerfil, '');
$resSuper = getUsuariosByType(ROL_SUPERVISOR, $db);
$opSupervisores = genUsuariosOP($resSuper, '', false);
$equipo = 0;
$resEquipos = getEquipos(0, $db);
if ( $_SESSION['rol'] == ROL_SUPERVISOR ){
$resEquipos = getEquiposBySup($_SESSION['userID'], $db);
$equipo = ( count($resEquipos)>0 ) ? $resEquipos[0]['team_id'] : $equipo;
} elseif ( $_SESSION['rol'] == ROL_JEFE ) {
$supJefe = getSupByJefe($_SESSION['userID'], $db);
$resEquipos = getEquiposByJefe($supJefe, $db);
}
$opEquipos = genEquiposOP($resEquipos, $equipo, true);
// Vars
$title = 'Panel Usuarios P&G';
include_once('jupiter/code/fxMenu.php');
$mnuMain = crearMnuAdmin('roles', null);
$mnuMainMobile = crearMnuAdminMobile('roles', null);
} else {
// User No logeado
header ('Location: index.php');
}
?>
<!doctype html>
<html class="no-js" lang="es">
<head>
<?php include_once('code/header.php'); ?>
</head>
<body>
<div class="off-canvas-wrap" data-offcanvas>
<div class="inner-wrap">
<!-- Off Canvas Menu -->
<aside class="left-off-canvas-menu">
<?php print($mnuMainMobile); ?>
</aside>
<!-- Nav -->
<nav class="top-bar" data-topbar role="navigation">
<?php include_once('code/top-bar-title-admin.php'); ?>
<section class="top-bar-section">
<?php include_once('code/top-bar-admin.php'); ?>
</section>
</nav>
<!-- Menu -->
<div class="left-sidebar show-for-large-up">
<?php print($mnuMain); ?>
</div>
<main id="page" role="main" class="main mIzq45">
<section>
<div class="row pTop1">
<div class="large-12 columns">
<div class="large-9">
<h4 class="azulMain left bold">PANEL DE ROLES
<ul id="lstTypeUser" class="small f-dropdown" data-dropdown-content>
<?php if ($_SESSION['rol'] == ROL_ADMIN || $_SESSION['rol'] == ROL_JEFE): ?>
<li><a href="?q=new">Nuevos</a></li>
<?php endif; ?>
<li><a href="?q=user">Participantes</a></li>
<li><a href="?q=super">Docentes</a></li>
<?php if ($_SESSION['rol'] == ROL_ADMIN): ?>
<li><a href="?q=jefe">Directores</a></li>
<li><a href="?q=admin">Administradores</a></li>
<?php endif; ?>
</ul>
</h4>
<a href="#" data-options="align:right" data-dropdown="lstTypeUser" class="right"><i class="fa fa-filter"></i> Roles</a>
<hr class="mTop0" />
</div>
<div class="row text-left">
<div class="small-12 medium-12 large-9 columns">
<h4 class="azulMain left"><?php print $view; ?></h4>
<?php if ($_SESSION['rol'] == ROL_ADMIN || $_SESSION['rol'] == ROL_JEFE): ?>
<a id="btnNewUser" class="btn small round right" title="Crear Nuevo Usuario"><i class="fa fa-plus"></i> Crear Usuario</a>
<?php endif; ?>
<hr class="mTop0" />
<table id="tblUsuarios" width="100%" class="responsive">
<thead>
<tr>
<th width="20%">Nombre</th>
<th width="5%">Documento</th>
<th width="10%">Universidad</th>
<th width="10%">Filial</th>
<th width="10%">Rol</th>
<th width="5%">Activar</th>
<th width="30%">Acciones</th>
</tr>
</thead>
<tbody>
<?php print($tblUsuarios); ?>
</tbody>
</table>
<p id="msgbox" class="text-center"></p>
</div>
<div class="small-12 medium-12 large-3 columns">
<div class="row">
<div class="large-12 columns">
<h4 class="azulMain">BUSCAR USUARIOS</h4>
<hr class="mTop0" />
</div>
<div class="large-12 columns">
<form id="frmBuscar" action="panel-participantes-roles.php?q=search" method="post">
<div class="row">
<div class="large-12 columns">
<label>Nombre
<input id="txtNombre" name="txtNombre" type="text" placeholder="Nombre del usuario" />
</label>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<label>Documento
<input id="txtDocumento" name="txtDocumento" type="text" placeholder="Documento de identidad" />
</label>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<label>Universidad
<select id="cboBuscarDistro" name="cboBuscarDistro" <?php print($readonly) ?>>
<?php print($opDistribuidoras); ?>
</select>
</label>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<label>Filial
<select id="cboBuscarSucursal" name="cboBuscarSucursal" <?php print($readonly) ?>>
<?php print($opSucursales); ?>
</select>
</label>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<label>Sexo</label>
<input type="radio" name="opSexo" value="Masculino" id="opMasculino"><label for="opMasculino">Hombre</label>
<input type="radio" name="opSexo" value="Femenino" id="opFemenino"><label for="opFemenino">Mujer</label><br>
<input type="radio" name="opSexo" value="Cualquiera" id="opCualquiera" checked><label for="opCualquiera">Ambos</label>
</div>
</div><hr class="mTop0" />
<div class="row text-center">
<button class="small round" id="btnBuscar" type="submit">BUSCAR</button>
</div>
</form>
</div><p> </p>
</div>
</div>
</div>
</div>
</div>
</section>
<footer>
<?php include_once('code/footer.php'); ?>
</footer>
</main>
<!-- close the off-canvas menu -->
<a class="exit-off-canvas"></a>
</div>
</div>
<div id="myDelete" class="reveal-modal small" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog">
<h2 id="modalTitle">BORRAR PARTICIPANTE</h2>
<p id="modalDescrip" class="rojo">¿Estas seguro de borrarlo?</p>
<a class="close-reveal-modal" aria-label="Close">×</a>
<a class="button secondary custom-close-reveal-modal">Cancelar</a>
<a id="btnBorrarOk" class="button alert">Borrar</a> <span class="msgbox pLeft5"></span>
</div>
<div id="myCambiar" class="reveal-modal small" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog">
<h2 id="modalTitle">CAMBIAR CONTRASEÑA</h2>
<label>
<input type="password" value="" id="txtContrasena" placeholder="Contraseña" required />
</label>
<label>
<input type="password" value="" id="txtRepcontrasena" placeholder="Repetir Contraseña" required />
</label>
<label>
<input type="password" value="" id="txtContrasenaSuper" placeholder="Contraseña del Autorizador" class="border-important" required />
</label>
<a class="close-reveal-modal" aria-label="Close">×</a>
<a class="button secondary round custom-close-reveal-modal">Cancelar</a>
<a id="btnCambiarOk" class="button round success">Cambiar</a> <span class="msgbox pLeft5"></span>
</div>
<div id="myLocation" class="reveal-modal small" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog">
<h2 id="modalTitle">ASIGNAR LOCACIÓN</h2>
<label>Universidad
<select id="cboChangeDistribuidora">
<?php echo $opDistribuidoras; ?>
</select>
</label>
<label>Filial
<select id="cboChangeSucursal">
<?php echo $opSucursales; ?>
</select>
</label>
<a class="close-reveal-modal" aria-label="Close">×</a>
<a class="button secondary round custom-close-reveal-modal">Cancelar</a>
<a id="btnGuardarDS" class="button round success">Guardar</a> <span class="msgbox pLeft5"></span>
</div>
<div id="mySupervisor" class="reveal-modal small" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog">
<h2 id="modalTitle">ASIGNAR DOCENTE</h2>
<label>Docente
<select id="cboChangeSupervisor">
<?php echo $opSuper; ?>
</select>
</label>
<a class="close-reveal-modal" aria-label="Close">×</a>
<a class="button secondary round custom-close-reveal-modal">Cancelar</a>
<a id="btnSaveSupervisor" class="button round success">Guardar</a> <span class="msgbox pLeft5"></span>
</div>
<div id="myRol" class="reveal-modal small" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog">
<h2 id="modalTitle">ASIGNAR ROL</h2>
<label>
<select id="cboChangeRol">
<?php print $opRol; ?>
</select>
</label>
<a class="close-reveal-modal" aria-label="Close">×</a>
<a class="button secondary round custom-close-reveal-modal">Cancelar</a>
<a id="btnSaveRol" class="button round success">Guardar</a> <span class="msgbox pLeft5"></span>
</div>
<div id="myPerfil" class="reveal-modal small" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog">
<h2 id="modalTitle">ASIGNAR PERFIL A DOCENTE</h2>
<label>
<select id="cboChangePerfil">
<?php print $opPerfil; ?>
</select>
</label>
<a class="close-reveal-modal" aria-label="Close">×</a>
<a class="button secondary round custom-close-reveal-modal">Cancelar</a>
<a id="btnSavePerfilSup" class="button round success">Guardar</a> <span class="msgbox pLeft5"></span>
</div>
<div id="myNewUser" class="reveal-modal small" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog">
<h2 id="modalTitle">NUEVO USUARIO</h2>
<label>Rol
<select id="cboUserRol">
<?php print $opRol; ?>
</select>
</label>
<label><input id="txtUserDni" type="text" placeholder="DNI" required /></label>
<label><input id="txtUserNombre" type="text" placeholder="Nombre y Apellido" required /></label>
<label><input id="txtUserEmail" type="email" placeholder="Correo" required /></label>
<label><input id="txtUserPass" type="password" placeholder="Contraseña" required /></label>
<label>Perfil
<select id="cboUserPerfil" <?php print($readonly) ?>>
<?php print $opPerfil; ?>
</select>
</label>
<label>Universidad
<select id="cboUserDistribuidora" <?php print($readonly) ?>>
<?php echo $opDistribuidoras; ?>
</select>
</label>
<label>Filial
<select id="cboUserSucursal" <?php print($readonly) ?>>
<?php echo $opSucursales; ?>
</select>
</label>
<label id="lblEquipo" class="hide">Equipo
<select id="cboUserEquipo" name="cboUserEquipo">
<?php print($opEquipos); ?>
</select>
</label>
<a class="close-reveal-modal" aria-label="Close">×</a>
<a class="button secondary round custom-close-reveal-modal">Cancelar</a>
<a id="btnSaveNewUser" class="button round success">Guardar</a> <span class="msgbox pLeft5"></span>
</div>
<div id="myPerfil" class="reveal-modal small" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog">
<h2 id="modalTitle">ASIGNAR PERFIL A DOCENTE</h2>
<label>
<select id="cboChangePerfil">
<?php print $opPerfil; ?>
</select>
</label>
<a class="close-reveal-modal" aria-label="Close">×</a>
<a class="button secondary round custom-close-reveal-modal">Cancelar</a>
<a id="btnSavePerfilSup" class="button round success">Guardar</a> <span class="msgbox pLeft5"></span>
</div>
<div id="mySupervisores" class="reveal-modal small" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog">
<h2 id="modalTitle">ASIGNAR DIRECTOR</h2>
<div class="mDown1">
<select multiple="multiple" id="cboSupervisores" name="cboSupervisores[]">
<?php print($opSupervisores) ?>
</select>
</div>
<a class="close-reveal-modal" aria-label="Close">×</a>
<a class="button secondary round custom-close-reveal-modal">Cancelar</a>
<a id="btnSaveSupJefe" class="button round success">Guardar</a> <span class="msgbox pLeft5"></span>
</div>
<?php include_once('code/script.php'); ?>
<script src="/js/jquery.multi-select.js"></script>
<script src="js/responsive-tables.js"></script>
<script>
$(document).on('ready', iniciar);
var ajaxReq = 'jupiter/api.php';
var auth = <?php print $_SESSION['userID']; ?>;
var curControl = null;
var rel = null;
var href = null;
var tr = null;
var code = -1;
var jsonCity = <?php print json_encode($resSuc); ?>;
function iniciar(){
$(document).foundation();
$('#tblUsuarios tbody tr td.tableActs .delete').on('click', preDelete);
$('#tblUsuarios tbody tr td input.activar').on('click', activarUser);
$('#tblUsuarios tbody tr td.tableActs .location').on('click', changeLocation);
$('#tblUsuarios tbody tr td.tableActs .supervisor').on('click', changeSupervisor);
$('#tblUsuarios tbody tr td.tableActs .rol').on('click', changeRol);
$('#tblUsuarios tbody tr td.tableActs .perfil').on('click', changePerfil);
$('#tblUsuarios tbody tr td.tableActs .pass').on('click', changePass);
$('#tblUsuarios tbody tr td.tableActs .jefe').on('click', changeSupJefe);
$('#btnNewUser').on('click', ShowNewUser);
$('#btnSaveNewUser').on('click', saveNewUser);
$('#btnGuardarDS').on('click', saveLocation);
$('#btnSaveSupervisor').on('click', saveSupervisor);
$('#btnSaveRol').on('click', saveRol);
$('#btnSavePerfilSup').on('click', savePerfilSup);
$('#btnCambiarOk').on('click', saveChangePass);
$('#cboChangeDistribuidora').on('change', changeDistribuidora);
$('#btnBorrarOk').on('click', deleteUser);
$('#lstTypeUser li a').on('click', reloadParticipantes);
$('#lstPerfilUser li a').on('click', reloadParticipantes);
$('#btnBuscar').on('click', searchParticipantes);
$('#btnSaveSupJefe').on('click', saveSupJefe);
$('#cboSupervisores').multiSelect();
$('#cboUserRol').on('change', showUserRol);
$('a.custom-close-reveal-modal').click(function(){
$('#myDelete').foundation('reveal', 'close');
});
};
function isBlank( data ) {
return ( $.trim(data).length == 0 );
};
function showUserRol(e){
var temp = $('#cboUserRol').val();
if (temp == 1){
$('#lblEquipo').show();
} else {
$('#lblEquipo').hide();
}
};
function ShowNewUser(e){
e.preventDefault();
//$('#cboUserRol').val(-1);
//$('#cboUserSucursal').val(-1);
//$('#cboUserDistribuidora').val(-1);
//$('#cboUserPerfil').val(-1);
//$('#cboUserSupervisor').val(-1);
$("#myNewUser input[type=text]").each(function(){
var input = $(this);
input.val('');
});
$('#myNewUser span.msgbox').html('');
$('#myNewUser').foundation('reveal', 'open');
};
function saveNewUser(e){
var $msgbox = $(this).next('span.msgbox');
$msgbox.html(' Procesando <i class="fa fa-spinner fa-pulse"></i>');
var uRol = $('#cboUserRol').val();
var uSucursal = $('#cboUserSucursal').val();
var uDistro = $('#cboUserDistribuidora').val();
var uPerfil = $('#cboUserPerfil').val();
var uEquipo = $('#cboUserEquipo').val();
//var uSuper = $('#cboUserSupervisor').val();
var uDni = $('#txtUserDni').val();
var uNombre = $('#txtUserNombre').val();
var uEmail = $('#txtUserEmail').val();
var uPass = $('#txtUserPass').val();
$.post(ajaxReq, {action:"saveNewUser", eAuth:auth, eRol:uRol, eSucursal:uSucursal, eDistro:uDistro, ePerfil:uPerfil, eEquipo:uEquipo, eDni:uDni, eNom:uNombre, eEmail:uEmail, ePass:uPass, rand:Math.random()},
function(data){
if( data.rpta.status == 'ok' ){
// OK!
$msgbox.html(' Grabado correctamente.');
$('#myNewUser').foundation('reveal', 'close').fadeOut( "slow" );
} else {
$msgbox.html(' Error: ' + data.info);
}
});
};
function searchParticipantes(e){
var nom = $('#txtNombre').val();
var doc = $('#txtDocumento').val();
var distro = $('#cboBuscarDistro').val();
var ciudad = $('#cboBuscarSucursal').val();
// Preparar Busqueda
}
function reloadParticipantes(e){
$('#lblTitle').html(' Procesando <i class="fa fa-spinner fa-pulse"></i>');
}
function saveSupervisor(e){
var $msgbox = $(this).next('span.msgbox');
$msgbox.html(' Procesando <i class="fa fa-spinner fa-pulse"></i>');
var supervisor = $('#cboChangeSupervisor').val();
$.post(ajaxReq, {action:"setUserSupervisor", eAuth:auth, eRel:rel, eSuper:supervisor, rand:Math.random()},
function(data){
if( data.status == 'ok' ){
// OK!
$msgbox.html(' Grabado correctamente.');
$('#mySupervisor').foundation('reveal', 'close').fadeOut( "slow" );
} else {
$msgbox.html(' Error: ' + data.info);
}
});
};
function saveRol(e){
var $msgbox = $(this).next('span.msgbox');
$msgbox.html(' Procesando <i class="fa fa-spinner fa-pulse"></i>');
var rol = $('#cboChangeRol').val();
$.post(ajaxReq, {action:"setUserRol", eAuth:auth, eRel:rel, eRol:rol, rand:Math.random()},
function(data){
if( data.status == 'ok' ){
// OK!
$msgbox.html(' Grabado correctamente.');
$('#myRol').foundation('reveal', 'close').fadeOut( "slow" );
} else {
$msgbox.html(' Error: ' + data.info);
}
});
};
function savePerfilSup(e){
var $msgbox = $(this).next('span.msgbox');
$msgbox.html(' Procesando <i class="fa fa-spinner fa-pulse"></i>');
var perfil = $('#cboChangePerfil').val();
$.post(ajaxReq, {action:"SavePerfilSup", eAuth:auth, eRel:rel, eRelId:perfil, rand:Math.random()},
function(data){
if( data.status == 'ok' ){
// OK!
$msgbox.html(' Grabado correctamente.');
$('#myPerfil').foundation('reveal', 'close').fadeOut( "slow" );
} else {
$msgbox.html(' Error: ' + data.info);
}
});
};
function saveSupJefe(e){
var $msgbox = $(this).next('span.msgbox');
$msgbox.html(' Procesando <i class="fa fa-spinner fa-pulse"></i>');
var supervisores = $('#cboSupervisores').val();
$.post(ajaxReq, {action:"SaveSupJefe", eAuth:auth, eRel:rel, eSup:supervisores, rand:Math.random()},
function(data){
if( data.status == 'ok' ){
// OK!
$msgbox.html(' Grabado correctamente.');
$('#mySupervisores').foundation('reveal', 'close').fadeOut( "slow" );
} else {
$msgbox.html(' Error: ' + data.info);
}
});
};
function changePass(e){
e.preventDefault();
rel = $(this).attr('rel');
$('#myCambiar span.msgbox').html('');
$('#myCambiar').foundation('reveal', 'open');
};
function changeSupJefe(e){
e.preventDefault();
rel = $(this).attr('rel');
var sup = $(this).attr('href');
var array = sup.split(',');
$('#cboSupervisores').multiSelect('deselect_all');
$('#cboSupervisores').multiSelect('select', array);
$('#mySupervisores span.msgbox').html('');
$('#mySupervisores').foundation('reveal', 'open');
};
function saveChangePass(e){
var $msgbox = $(this).next('span.msgbox');
var pass1 = $('#txtContrasena').val();
var pass2 = $('#txtRepcontrasena').val();
var pass3 = $('#txtContrasenaSuper').val();
if (pass1 !== pass2){
$msgbox.html('<i class="fa fa-exclamation-triangle"></i> Error: Las Contraseñas no coinciden.');
$('#txtContrasena').focus();
return false;
}
if ( isBlank($('#txtContrasenaSuper').val()) ){
$msgbox.html('<i class="fa fa-exclamation-triangle"></i> Error: Ingresar contraseña del Autorizador.');
$('#txtContrasenaSuper').focus();
return false;
}
$msgbox.html(' Procesando <i class="fa fa-spinner fa-pulse"></i>');
$.post(ajaxReq, {action:"saveChangePass", eAuth:auth, eRel:rel, ePass1:pass1, ePass2:pass2, ePass3:pass3, rand:Math.random()},
function(data){
if( data.status == 'ok' ){
// OK!
$msgbox.html(' Grabado correctamente.');
$('#myCambiar').foundation('reveal', 'close').fadeOut( "slow" );
} else {
$msgbox.html(' Error: ' + data.status);
}
});
};
function changeRol(e){
e.preventDefault();
rel = $(this).attr('rel');
var href = $(this).attr('href');
$('#cboChangeRol').val(href);
$('#myRol span.msgbox').html('');
$('#myRol').foundation('reveal', 'open');
};
function changePerfil(e){
e.preventDefault();
rel = $(this).attr('rel');
var href = $(this).attr('href');
$('#cboChangePerfil').val(href);
$('#myPerfil span.msgbox').html('');
$('#myPerfil').foundation('reveal', 'open');
};
function changeSupervisor(e){
e.preventDefault();
rel = $(this).attr('rel');
var href = $(this).attr('href');
$('#cboChangeSupervisor').val(href);
$('#mySupervisor span.msgbox').html('');
$('#mySupervisor').foundation('reveal', 'open');
};
function preDelete() {
curControl = $(this);
rel = curControl.attr('rel');
tr = curControl.parent().parent();
$('#myDelete').foundation('reveal', 'open');
};
function deleteUser(){
var $msgbox = $(this).next('span.msgbox');
$msgbox.html(' Procesando <i class="fa fa-spinner fa-pulse"></i>');
$.post(ajaxReq, {action:"delUser", eAuth:auth, eRel:rel, rand:Math.random()},
function(data){
if( data.status == 'ok' ){
// OK!
$msgbox.html(' Eliminado correctamente.');
$('#myLocation').foundation('reveal', 'close').fadeOut( "slow" );
tr.remove();
} else {
$msgbox.html(' Error: ' + data.info);
}
});
};
function changeLocation(e){
e.preventDefault();
rel = $(this).attr('rel');
var str1 = $(this).attr('href');
href = str1.split(',');
$('#cboChangeDistribuidora').val(href[0]);
fillSucursalCBO(href[0]);
$('#cboChangeSucursal').val(href[1]);
$('#myLocation span.msgbox').html('');
$('#myLocation').foundation('reveal', 'open');
};
function changeDistribuidora(){
fillSucursalCBO( $(this).val() );
};
function fillSucursalCBO(distributor_id){
var cbo = $('#cboChangeSucursal');
cbo.empty();
cbo.append('<option value="-1">Seleccionar...</option>');
$.each(jsonCity, function(i, item) {
if ( parseInt(item.distributor_id) == parseInt(distributor_id) ){
cbo.append('<option value="' + item.subsidiary_id + '">' + item.subsidiary_name + '</option>');
}
});
};
function saveLocation(e){
e.preventDefault();
var $msgbox = $(this).next('span.msgbox');
$msgbox.html(' Procesando <i class="fa fa-spinner fa-pulse"></i>');
var locD = $('#cboChangeDistribuidora').val();
var locS = $('#cboChangeSucursal').val();
$.post(ajaxReq, {action:'saveLocation', eAuth:auth, eRel:rel, eLocD:locD, eLocS:locS, rand:Math.random()},
function(data){
if ( data.status == '2' || data.status == 2 ){
// OK!
$('a[rel="' + rel + '"]').attr('href', locD + ',' + locS);
$msgbox.html(' Guardado correctamente.');
$('#myLocation').foundation('reveal', 'close').fadeOut( "slow" );
} else {
$msgbox.html(' Error: ' + data.info);
}
});
};
function activarUser() {
try {
curControl = $(this);
rel = curControl.attr('rel');
var check = curControl.is(':checked');
if( check ) {
var info = $('#tblUsuarios tbody tr td a[rel*="' + rel + '"]');
var info_nombre = info.text().trim();
var info_email = info.attr('data');
activarUserRelly('activateUser', info_nombre, info_email);
} else {
activarUserRelly('deactivateUser', '', '');
}
}
catch(err) {
alert(err.message);
}
};
function activarUserRelly(eAction, nombre, email){
$('#msgbox').html('<i class="fa fa-cog fa-spin"></i> Procesando');
$.post(ajaxReq, {action:eAction, eAuth:auth, eRel:rel, eNom:nombre, eEmail:email, rand:Math.random()},
function(data){
if ( data.status == 'ok' ){
// OK!
$('#msgbox').html('Procesado correctamente.');
} else {
$('#msgbox').html('Msg: [ ' + data.status + ' ]');
}
});
};
</script>
</body>
</html>