-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrear-equipo - copia.php
724 lines (610 loc) · 24.7 KB
/
crear-equipo - copia.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
<?php
include_once('config.php');
if (isset($_SESSION['username'])){
include_once('jupiter/code/fxModelo.php');
include_once('jupiter/code/fxVista.php');
include_once('jupiter/code/db_procter.php');
$resultados = getEquipos(0, $db);
$tblEquipo = genEquiposTR($resultados);
$resDis = getDistribuidoras($db);
$opDistribuidoras = genDistribuidorasOP($resDis, '');
$resSuc = getSucursalesFull($db);
$opSucursales = genSucursalesOPFull($resSuc, '');
$resSuper = getUsuariosByType(ROL_SUPERVISOR, $db);
$opSuper = genUsuariosOP($resSuper, '');
// Vars
$title = 'Crear Equipo P&G';
include_once('jupiter/code/fxMenu.php');
$mnuMain = crearMnuAdmin('equipo', 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>
<!-- 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>
<h4 class="azulMain left bold">PANEL DE EQUIPOS</h4>
<hr class="mTop0" />
</div>
<div class="row text-left">
<div class="small-12 medium-6 columns" id="frmData">
<div class="row">
<div class="large-12 columns">
<h4 class="azulMain"><a id="btnNewItem" title="Crear Nuevo">CREAR EQUIPO</a></h4>
<hr class="mTop0" />
</div>
<div class="large-12 columns">
<label>Equipo
<input type="text" value="" id="txtEquipo" placeholder="Nombre del Equipo" />
</label>
</div>
<div class="large-12 columns">
<label>Descripción
<input type="text" value="" id="txtDescripcion" placeholder="Descripción del Equipo" />
</label>
</div>
<div class="large-12 columns">
<label>Distribuidora
<select id="cboEquipoDistribuidora">
<?php echo $opDistribuidoras; ?>
</select>
</label>
</div>
<div class="large-12 columns">
<label>Sucursal
<select id="cboEquipoSucursal">
<?php echo $opSucursales; ?>
</select>
</label>
</div>
<div class="large-12 columns">
<label>Supervisor
<select id="cboEquipoSupervisor">
<?php echo $opSuper; ?>
</select>
</label>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<a class="small round button success" id="btnGrabar">GRABAR</a> <span id="msgbox"></span>
</div>
</div>
</div>
<div class="small-12 medium-6 columns">
<div class="row">
<div class="large-12 columns">
<h4 class="azulMain5">LISTA DE EQUIPOS</h4>
<hr class="mTop0" />
</div>
<div class="large-12 columns">
<table id="tblEquipo" width="100%">
<thead>
<tr>
<th width="70%">Lista</th>
<th width="30%">Acciones</th>
</tr>
</thead>
<tbody>
<?php print($tblEquipo); ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="row text-left">
<div class="small-12 medium-6 columns" id="frmDetalle">
</div>
</div>
</div>
</div>
</section>
</main>
<div id="myDelete" class="reveal-modal small" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog">
<h2 id="modalTitle">BORRAR EQUIPO</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>
</div>
<div id="myLocation" class="reveal-modal small" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog">
<h2 id="modalTitle">ASIGNAR DISTRIBUIDORA</h2>
<label>Distribuidora
<select id="cboChangeDistribuidora">
<?php echo $opDistribuidoras; ?>
</select>
</label>
<a class="close-reveal-modal" aria-label="Close">×</a>
<a class="button secondary round custom-close-reveal-modal">Cancelar</a>
<a id="btnGuardarD" class="button round success">Agregar</a> <span class="msgbox pLeft5"></span>
</div>
<div id="myCity" class="reveal-modal small" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog">
<h2 id="modalTitle">ASIGNAR SUCURSAL</h2>
<label>Sucursal
<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="btnGuardarCity" 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 SUPERVISOR</h2>
<label>Supervisor
<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="myParticipante" class="reveal-modal small" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog">
<h2 id="modalTitle">AGREGAR MIEMBRO</h2>
<div class="row">
<div class="large-12 columns">
<div class="row collapse">
<div class="small-6 columns">
<input id="txtNombre" name="txtNombre" type="text" placeholder="Nombre del usuario" />
</div>
<div class="small-4 columns">
<input id="txtDocumento" name="txtDocumento" type="text" placeholder="Documento de identidad" />
</div>
<div class="small-2 columns">
<a id="btnBuscarParticipante" href="#" class="button postfix">Go</a>
</div>
</div>
</div>
</div>
<div class="row">
<div id="divParticipante"></div>
<span id="lblParticipante" class="msgbox pLeft5"></span>
</div>
<a class="close-reveal-modal" aria-label="Close">×</a>
</div>
<div id="mySupervisor" class="reveal-modal small" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog">
<h2 id="modalTitle">ASIGNAR SUPERVISOR</h2>
<label>Supervisor
<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="myDetalles" class="reveal-modal small" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog">
<h2 id="titleEquipo">Detalle</h2>
<span id="lblDetalle"></span>
<table id="tblEquipo" width="100%">
<tbody>
<tr>
<th width="30%">Distribuidora</th>
<th width="70%">
<div id="divDistribuidora"></div>
</th>
</tr>
<tr>
<th>Sucursal</th>
<th>
<div id="divSucursal"></div>
</th>
</tr>
<tr>
<th>Supervisor</th>
<th>
<div id="divSupervisor"></div>
</th>
</tr>
</tbody>
</table>
<a class="small round button default" id="btnEquipoMiembros">Ver Miembros</a>
<a class="close-reveal-modal" aria-label="Close">×</a>
</div>
<div id="myMiembros" class="reveal-modal small" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog">
<h2 id="titleMiembros">Miembros de</h2>
<span id="lblMiembros"></span>
<div id="divMiembros"></div>
<a class="close-reveal-modal" aria-label="Close">×</a>
</div>
<?php include_once('code/script.php'); ?>
<script>
$(document).foundation();
$('a.custom-close-reveal-modal').click(function(){
$('#myDelete').foundation('reveal', 'close');
});
var auth = 0;
var ajaxReq = "jupiter/api.php";
var curControl = null;
var json = null;
var code = -1;
var jsonCity = <?php print json_encode($resSuc); ?>;
var city = -1;
$('#btnGrabar').on('click', grabarDB);
$('#btnNewItem').on('click', newItem);
$('#tblEquipo tbody tr td.tableActs .delete').on('click', eliminarFila);
$('#tblEquipo tbody tr td .edit').on('click', editarFila);
$('#btnBorrarOk').on('click', eliminarFilaOk);
$('#tblEquipo tbody tr td.tableActs .location').on('click', changeLocation);
$('#tblEquipo tbody tr td.tableActs .city').on('click', changeCity);
$('#tblEquipo tbody tr td.tableActs .participante').on('click', addParticipante);
$('#tblEquipo tbody tr td.tableActs .supervisor').on('click', addSupervisor);
$('#btnBuscarParticipante').on('click', searchParticipantes);
$('#btnGuardarD').on('click', asignarDistribuidora);
$('#btnGuardarCity').on('click', asignarSucursal);
$('#btnSaveSupervisor').on('click', asignarSupervisor);
//$('#frmDetalle').on('close.fndtn.alert', delTeamList);
$('#frmDetalle .close').on('click', delTeamList);
function isBlank( data ) {
return ( $.trim(data).length == 0 );
}
function verifyData () {
var rpta = true;
$('#txtEquipo').removeClass('err');
$('#txtDescripcion').removeClass('err');
if ( isBlank($('#txtEquipo').val()) ){
$('#txtEquipo').addClass('err');
rpta = false;
}
if ( isBlank($('#txtDescripcion').val()) ){
$('#txtDescripcion').addClass('err');
rpta = false;
}
return rpta;
};
function grabarDB(){
if (verifyData()){
var nombre = $("#txtEquipo").val();
var descrip = $("#txtDescripcion").val();
if (code === -1){
grabarInsert(nombre, descrip);
} else {
grabarUpdate(nombre, descrip);
}
}
};
function grabarInsert(nombre, descrip){
$('#msgbox').html('<i class="fa fa-cog fa-spin"></i> Procesando');
$.post(ajaxReq, {action:"newEquipo", eAuth:auth, eNombre:nombre, eDescrip:descrip, rand:Math.random()},
function(data){
if( data !== '-1' || data !== -1 ){
// OK!
$('#msgbox').html('¡Bien! Se agregó el equipo satisfactoriamente.');
//$('#tblEquipo > Tbody:first').append('<tr><td><a rel="' + data + '" class="edit">' + nombre + '</a></td><td class=\"tableActs\"><a data-tooltip aria-haspopup=\"true\" class=\"pLeft5 tip-top\" href=\"crear-sucursal.php\" title=\"Ver Sucursal\"><i class=\"fa fa-university\"></i></a><a rel="'+ code + '" data-reveal-id="myDelete" class="pLeft5 delete rojo" title="Borrar"><i class=\"fa fa-trash-o fa-lg\"></i></a></td></tr>');
$('#tblEquipo > Tbody:first').append('<tr><td>'
+ ' <a rel=\"'+ data+ '\" class=\"edit\">'+ nombre+ '</a></td><td class=\"tableActs\">'
+ ' <a data-tooltip aria-haspopup="true" class="pLeft5 tip-top location" href="-1" rel="'+ data+ '" title="Agregar Distribuidora">'
+ ' <i class="fa fa-university"></i></a>'
+ ' <a data-tooltip aria-haspopup="true" class="pLeft5 tip-top city" href="-1" rel="'+ data+ '" title="Agregar Sucursal">'
+ ' <i class="fa fa-map-marker"></i></a>'
+ ' <a data-tooltip aria-haspopup="true" class="pLeft5 tip-top participante" href="-1" rel="'+ data+ '" title="Agregar Miembros">'
+ ' <i class="fa fa-user-plus"></i></a>'
+ ' <a data-tooltip aria-haspopup="true" rel="'+ data+ '" href="-1" class="pLeft5 tip-top supervisor" title="Agregar Supervisor">'
+ ' <i class="fa fa-shield fa-lg"></i></a>'
+ ' <a data-tooltip aria-haspopup="true" href="ver-equipo.php?pid='+ data+ '" class="pLeft5 tip-top" title="Ver Equipo">'
+ ' <i class="fa fa-eye fa-lg"></i></a>'
+ ' <a data-tooltip aria-haspopup="true" rel="'+ data+ '" data-reveal-id="myDelete" class="pLeft5 tip-top delete rojo" title="Borrar">'
+ ' <i class="fa fa-trash-o fa-lg"></i></a>'
+ '</td></tr>');
$('#tblEquipo tbody tr td.tableActs .delete').on('click', eliminarFila);
$('#tblEquipo tbody tr td.tableActs .location').on('click', changeLocation);
$('#tblEquipo tbody tr td.tableActs .city').on('click', changeCity);
$('#tblEquipo tbody tr td.tableActs .participante').on('click', addParticipante);
$('#tblEquipo tbody tr td.tableActs .supervisor').on('click', addSupervisor);
$('#tblEquipo tbody tr td .edit').on('click', editarFila);
$(document).foundation('tooltip', 'reflow');
newItem();
} else {
$('#msgbox').html('Msg: [' + data + ']');
}
});
}
function grabarUpdate(nombre, descrip){
$('#msgbox').html('<i class="fa fa-cog fa-spin"></i> Procesando');
$.post(ajaxReq, {action:"updateEquipo", eAuth:auth, eRel:code, eNombre:nombre, eDescrip:descrip, rand:Math.random()},
function(data){
if( data !== '-1' || data !== -1 ){
// OK!
$('#msgbox').html('¡Bien! Se actualizo el equipo satisfactoriamente.');
curControl.text(nombre);
$(document).foundation('tooltip', 'reflow');
newItem();
} else {
$('#msgbox').html('Msg: [' + data + ']');
}
});
}
function eliminarFila() {
curControl = $(this);
rel = curControl.attr('rel');
tr = curControl.parent().parent();
};
function eliminarFilaOk(){
newItem();
$('#msgbox').html('<i class="fa fa-cog fa-spin"></i> Eliminando');
$.post(ajaxReq, {action:"delEquipo", eAuth:auth, eRel:rel, rand:Math.random()},
function(data){
if( data !== '-1' || data !== -1 ){
// OK!
$('#myDelete').foundation('reveal', 'close');
tr.remove();
$('.tooltip').hide();
$('#msgbox').html('Eliminado correctamente.');
} else {
$('#msgbox').html('Msg: [' + data + ']');
}
});
};
function editarFila(){
curControl = $(this);
$("#tblEquipo tbody tr td.bgVerdeL").removeClass('bgVerdeL');
curControl.parent().addClass('bgVerdeL');
code = curControl.attr('rel');
limpiar();
$('#msgbox').html('<i class="fa fa-cog fa-spin"></i> Cargando');
$.post(ajaxReq, {action:"getEquipo", eAuth:auth, eRel:code, rand:Math.random()},
function(data){
json = data;
$('#msgbox').html('');
$('#txtEquipo').val(json[0].nombre);
$('#txtDescripcion').val(json[0].descrip);
$('#titleEquipo').html('Detalle de '+ json[0].nombre);
$('#titleMiembros').html('Miembros de '+ json[0].nombre);
});
};
function genAlert(item){
return '<div data-alert class="alert-box info round">'+ item.list_name+ '<a href="#" rel="'+ item.id+ '" class="close">×</a></div>'
}
function verEquipoDetalles(){
//Get Detalle TeamList
$('#myDetalles').foundation('reveal', 'open');
$('#lblDetalle').html('<i class="fa fa-cog fa-spin"></i> Cargando Detalles');
$.post(ajaxReq, {action:"getTeamListByTeam", eAuth:auth, eRel:code, rand:Math.random()},
function(data){
json = data;
$('#lblDetalle').html('');
$.each(json, function(i, item) {
if (item.list_type == 'Distribuidora') { $('#divDistribuidora').append( genAlert(item) ); }
if (item.list_type == 'Ciudad') { $('#divSucursal').append( genAlert(item) ); }
if (item.list_type == 'Supervisor') { $('#divSupervisor').append( genAlert(item) ); }
});
$('#frmDetalle .close').on('click', delTeamList);
});
}
function verEquipoMiembros(){
//Get Detalle TeamList
$('#myMiembros').foundation('reveal', 'open');
$('#lblMiembros').html('<i class="fa fa-cog fa-spin"></i> Cargando Detalles');
$.post(ajaxReq, {action:"getTeamListByTeam", eAuth:auth, eRel:code, rand:Math.random()},
function(data){
json = data;
$('#lblMiembros').html('');
$.each(json, function(i, item) {
$('#divMiembros').append( item );
});
$('#divMiembros').append( '...' );
});
}
function newItem() {
code = -1;
$("#tblEquipo tbody tr td.bgVerdeL").removeClass('bgVerdeL');
limpiar();
};
function limpiar () {
$('#frmData input').removeClass('err');
$('#divDistribuidora').html('');
$('#divSucursal').html('');
$('#divSupervisor').html('');
$('#txtEquipo').val('');
$('#txtDescripcion').val('');
$('#txtDistribuidora').focus();
};
//+++
function changeLocation(e){
e.preventDefault();
rel = $(this).attr('rel');
var str1 = $(this).attr('href');
href = str1.split(',');
$('#cboChangeDistribuidora').val(href[0]);
$('#myLocation span.msgbox').html('');
$('#myLocation').foundation('reveal', 'open');
};
function changeCity(e){
e.preventDefault();
rel = $(this).attr('rel');
var str1 = $(this).attr('href');
href = str1.split(',');
$('#cboChangeSucursal').val(href[0]);
$('#myCity span.msgbox').html('');
$('#myCity').foundation('reveal', 'open');
}
function addParticipante(e){
e.preventDefault();
rel = $(this).attr('rel');
$('#divParticipante').html('');
$('#lblParticipante').html('Busca al usuario que quieres agregar');
$('#myParticipante').foundation('reveal', 'open');
}
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 searchParticipantes(e){
e.preventDefault();
var $msgbox = $('#lblParticipante');
$msgbox.html(' Buscando <i class="fa fa-spinner fa-pulse"></i>');
var nom = $('#txtNombre').val();
var doc = $('#txtDocumento').val();
var html = '';
$.post(ajaxReq, {action:'searchParticipantes', eAuth:auth, eNom:nom, eDoc:doc, rand:Math.random()},
function(data){
for(i=0;i<data.length;i++){
html += prepareHtml(data[i]);
}
$msgbox.html('<table id="tblResultados" width="100%"><thead><tr><th width="60%">Nombre</th><th width="30%">Documento</th><th width="10%"></th></tr></thead><tbody>' + html + '</tbody></table> <span class="msgbox pLeft5"></span>');
$('#tblResultados .addUsuario').on('click', asignarUsuario);
});
}
function prepareHtml(data){
var html = '';
html += '<tr>';
html += '<td class="nombre"><a rel="' + data.id + '" href="#" title="' + data.email + '">' + data.nombre + '</a></td>';
html += '<td>' + data.doc + '</td>';
html += '<td class="tableActs">';
html += ' <a rel="' + data.id + '" class="pLeft5 tip-top addUsuario" title="Agregar Miembro">';
html += ' <i class="fa fa-plus-circle fa-lg"></i></a>';
html += '</td></tr>';
return html;
}
function asignarDistribuidora(e){
e.preventDefault();
var $msgbox = $(this).next('span.msgbox');
$msgbox.html(' Procesando <i class="fa fa-spinner fa-pulse"></i>');
var listId = $('#cboChangeDistribuidora').val();
var listName = $('#cboChangeDistribuidora option:selected').text();
var listType = 'Distribuidora';
if (listId == -1) { $msgbox.html(' Selecciona un valor'); return false; }
$.post(ajaxReq, {action:"newTeamList", eAuth:auth, eRel:rel, eListName:listName, eListType:listType, eListTypeID:listId, rand:Math.random()},
function(data){
if( data !== 'false' || data !== false ){
// OK!
$msgbox.html('¡Bien!');
$('#divDistribuidora').append('<div data-alert class="alert-box info radius">'+ listName+ '<a href="#" class="close">×</a></div>');
$(document).foundation('alert', 'reflow');
$(document).foundation('tooltip', 'reflow');
} else {
$msgbox.html('Msg: [' + data + ']');
}
});
};
function asignarSucursal(e){
e.preventDefault();
var $msgbox = $(this).next('span.msgbox');
$msgbox.html(' Procesando <i class="fa fa-spinner fa-pulse"></i>');
var listId = $('#cboChangeSucursal').val();
var listName = $('#cboChangeSucursal option:selected').text();
var listType = 'Ciudad';
$.post(ajaxReq, {action:"newTeamList", eAuth:auth, eRel:rel, eListName:listName, eListType:listType, eListTypeID:listId, rand:Math.random()},
function(data){
if( data !== 'false' || data !== false ){
// OK!
$msgbox.html('¡Bien!');
$('#divSucursal').append('<div data-alert class="alert-box info radius">'+ listName+ '<a href="#" class="close">×</a></div>');
$(document).foundation('tooltip', 'reflow');
} else {
$msgbox.html('Msg: [' + data + ']');
}
});
};
function asignarSupervisor(e){
e.preventDefault();
var $msgbox = $(this).next('span.msgbox');
$msgbox.html(' Procesando <i class="fa fa-spinner fa-pulse"></i>');
var listId = $('#cboChangeSupervisor').val();
var listName = $('#cboChangeSupervisor option:selected').text();
var listType = 'Supervisor';
$.post(ajaxReq, {action:"newTeamList", eAuth:auth, eRel:rel, eListName:listName, eListType:listType, eListTypeID:listId, rand:Math.random()},
function(data){
if( data !== 'false' || data !== false ){
// OK!
$msgbox.html('¡Bien!');
$('#divSupervisor').append('<div data-alert class="alert-box info radius">'+ listName+ '<a href="#" class="close">×</a></div>');
$(document).foundation('tooltip', 'reflow');
} else {
$msgbox.html('Msg: [' + data + ']');
}
});
};
function asignarUsuario(e){
e.preventDefault();
var listId = $(this).attr('rel');
var listType = 'Usuario';
var listName = $(".nombre a[rel='"+ listId +"']").text();
var $msgbox = $('#lblParticipante');
$msgbox.html(' Procesando <i class="fa fa-spinner fa-pulse"></i>');
$.post(ajaxReq, {action:"newTeamList", eAuth:auth, eRel:rel, eListName:listName, eListType:listType, eListTypeID:listId, rand:Math.random()},
function(data){
if( data !== 'false' || data !== false ){
// OK!
$msgbox.html('¡Bien!');
//$('#divSupervisor').append('<div data-alert class="alert-box info radius">'+ listName+ '<a href="#" class="close">×</a></div>');
$(document).foundation('tooltip', 'reflow');
} else {
$msgbox.html('Msg: [' + data + ']');
}
});
};
function grabarTeamList(listType, listId){
var $msgbox = $(this).next('span.msgbox');
$msgbox.html(' Procesando <i class="fa fa-spinner fa-pulse"></i>');
$.post(ajaxReq, {action:"newTeamList", eAuth:auth, eRel:code, eLT:listType, rand:Math.random()},
function(data){
if( data !== '-1' || data !== -1 ){
// OK!
$msgbox.html('¡Bien!');
$(document).foundation('tooltip', 'reflow');
} else {
$msgbox.html('Msg: [' + data + ']');
}
});
};
function addSupervisor(e){
e.preventDefault();
rel = $(this).attr('rel');
var href = $(this).attr('href');
$('#cboChangeSupervisor').val(href);
$('#mySupervisor span.msgbox').html('');
$('#mySupervisor').foundation('reveal', 'open');
};
function delTeamList(e){
e.preventDefault();
rel = $(this).attr('rel');
$.post(ajaxReq, {action:"delTeamList", eAuth:auth, eRel:rel, rand:Math.random()},
function(data){
if( data !== '-1' || data !== -1 ){
// OK!
$(this).hide();
} else {
//
}
});
}
</script>
</body>
</html>