-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlistarcentroacopio.php
383 lines (353 loc) · 18.9 KB
/
listarcentroacopio.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
<?
session_start();
require 'funciones.php';
// ini_set('display_errors', '1');
//ini_set('display_startup_errors', '1');
// error_reporting(E_ALL);
$conexion = new Conexion();
if(!isLogin())
{
header("location: login.php");
}
?>
<!DOCTYPE html>
<html lang="es">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Meta, title, CSS, favicons, etc. -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php
titulo_header();
?>
<!-- Bootstrap -->
<link href="../vendors/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link href="../vendors/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<!-- DataTable CSS -->
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.23/css/jquery.dataTables.min.css" />
<!-- Switchery -->
<link href="../vendors/switchery/dist/switchery.min.css" rel="stylesheet">
<!-- Custom Theme Style -->
<link href="../build/css/custom.min.css" rel="stylesheet">
</head>
<body class="nav-md">
<div class="container body">
<div class="main_container">
<?
menu_lateral_v2();
?>
<!-- top navigation -->
<div class="top_nav">
<?
navBar();
?>
</div>
<!-- page content -->
<div class="right_col" role="main">
<div class="page-title">
<div class="title_left">
<h3>Listado de centros de acopio</h3>
</div>
</div>
<div class="x_content">
<div class="" role="tabpanel" data-example-id="togglable-tabs">
<ul id="myTab" class="nav nav-tabs bar_tabs nav-justified" role="tablist">
<li role="presentation" class="active" id="home">
<a href="#tab_content1" id="home-tab" role="tab" data-toggle="tab" aria-expanded="true">
Visualizar todos los centro de acopio
</a>
</li>
<li role="presentation" class="" id="menu">
<a href="#tab_content2" role="tab" id="profile-tab" data-toggle="tab" aria-expanded="false">
Actualizar o registrar un centro de acpio
</a>
</li>
</ul>
<div id="myTabContent" class="tab-content">
<hr />
<div role="tabpanel" class="tab-pane fade active in" id="tab_content1" aria-labelledby="home-tab">
<div cass="table-responsive">
<table class="table tablecentroacopio" width="100%">
<thead>
<tr>
<th>
Gestión
</th>
<th>
Nombres
</th>
<th>
Dirección
</th>
<th>
Estado
</th>
<th>
Ubicación
</th>
</tr>
</thead>
</table>
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="tab_content2" aria-labelledby="profile-tab">
<form id="registrarcentroacopio"enctype="multipart/form-data">
<input type="hidden" value="0" name="idsucursal" id="idsucursal" />
<div class="row" style="margin-bottom: 1%">
<div class="col-md-6 col-md-offset-3 col-sm-6 col-sm-offset-3">
<div style="text-align: left;">
<label for="nombreAcopio"> Nombre del centro de acopio *</label>
<input id="nombreAcopio" name="nombre" type="text" class="form-control" required maxlength="200" autocomplete="off" />
</div>
</div>
</div>
<div class="row" style="margin-bottom: 1%">
<div class="col-md-6 col-md-offset-3 col-sm-6 col-sm-offset-3">
<div style="text-align: left;">
<label for="direccionAcopio"> Dirección del centro de acopio *</label>
<textarea id="direccionAcopio" name="direccion" class="form-control" required autocomplete="off"></textarea>
</div>
</div>
</div>
<div class="row" style="margin-bottom: 1%">
<div class="col-md-6 col-md-offset-3 col-sm-6 col-sm-offset-3">
<iframe name="location" src="busqueda_lugar.php" style="width: 100%; height: 250px;"></iframe>
</div>
</div>
<div class="row" style="margin-bottom: 1%">
<div class="col-md-6 col-md-offset-3 col-sm-6 col-sm-offset-3">
<div style="text-align: center;">
<button type="submit" class="btn btn-success actualizarCentroAcopio">Guardar centro de acopio</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- footer content -->
<footer>
<div class="pull-right">
Gentelella - Bootstrap Admin Template by <a href="https://colorlib.com">Colorlib</a>
</div>
<div class="clearfix"></div>
</footer>
<!-- /footer content -->
</div>
</div>
<!-- jQuery -->
<script src="../vendors/jquery/dist/jquery.min.js"></script>
<!-- Bootstrap -->
<script src="../vendors/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- Custom Theme Scripts -->
<script src="../build/js/custom.js"></script>
<!--datatable- -->
<script src="https://cdn.datatables.net/1.10.23/js/jquery.dataTables.min.js"></script>
<!-- Switchery -->
<script src="../vendors/switchery/dist/switchery.min.js"></script>
<!-- SWEET-ALERT -->
<script type="text/javascript" language="javascript" src="https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.all.min.js"></script>
<script type="text/javascript" language="javascript" src="js/cambiarContrasena.js" ></script>
<!-- SCRIPT WEB -->
<script type="text/javascript" >
$(document).ready(function(){
// ESTABLECIMIENTO DE LOS VALORES POR DEFAULT DE DATATABLE
$.extend( $.fn.dataTable.defaults, {
data: [],
destroy: true,
responsive: true,
language:{
emptyTable: "No se encontraron resultados",
url: "https://cdn.datatables.net/plug-ins/1.10.24/i18n/Spanish.json"
},
} );
listarCentrosAcopio()
$("#registrarcentroacopio").submit(function(event){
event.preventDefault();
var latitud = $('iframe[name=location]').contents().find('#txt_latitud_frm').val(),
longitud = $('iframe[name=location]').contents().find('#txt_longitud_frm').val()
var formData = new FormData($("#registrarcentroacopio")[0]);
formData.append('accion', "REGISTRAR");
formData.append('latitud', latitud);
formData.append('longitud', longitud);
$.ajax({
type: 'POST',
url: 'dist/ajax/acopio/centrosAcopio.php',
data: formData,
dataType: "json",
cache: false,
processData: false,
contentType: false,
error: function(err)
{
console.log(err)
},
beforeSend: function()
{
$(".actualizarCentroAcopio").prop({'disabled': true}).html(`<i class="fa fa-spinner fa-spin"></i> ${ Number( $("#idsucursal").val() ) == 0 ? 'Guardando' : 'Actualizando' } centro de acopio `)
},
success: function(response)
{
// console.log(response)
switch( response.success )
{
case 1:
alert(response.mensaje)
listarCentrosAcopio()
$("#registrarcentroacopio").trigger('reset')
$("#idsucursal").val(0)
$('.actualizarCentroAcopio').text('Guardar centro de acopio')
$("#myTab a[href='#tab_content1']").tab("show")
break;
case 2:
alert(response.mensaje)
break;
}
},
complete: function()
{
$(".actualizarCentroAcopio").prop({'disabled': true}).html(`Guardar centro de acopio `)
}
})
return false
})
$(".tablecentroacopio").on('click', '.btn-editar', function(){
var data = $('.tablecentroacopio').DataTable().row( $(this).closest('tr') ).data()
$('#idsucursal').val(data['idsucursal'])
$('#nombreAcopio').val(data['nombre'])
$('#direccionAcopio').val(data['direccion'])
$('.actualizarCentroAcopio').text('Actualizar centro de acopio')
$("#myTab a[href='#tab_content2']").tab("show");
})
$(".tablecentroacopio").on('click', '.js-switch', function(){
var data = $('.tablecentroacopio').DataTable().row( $(this).closest('tr') ).data()
if( data['estado'] == 'A' )
{
data['estado'] = 'I'
}else{
data['estado'] = 'A'
}
data['accion'] = 'REGISTRAR'
$.ajax({
type: 'POST',
url: 'dist/ajax/acopio/centrosAcopio.php',
data: data,
dataType: "json",
error: function(err)
{
console.log(err)
},
success: function(response)
{
switch(response.success)
{
case 1:
listarCentrosAcopio()
break;
case 2:
alert(response.mensaje)
break;
case 3:
break;
}
}
})
})
$('#home-tab').on('click', function (e) {
$("#registrarcentroacopio").trigger('reset')
$('.actualizarCentroAcopio').text('Guardar centro de acopio')
$("#idsucursal").val(0)
})
})
function listarCentrosAcopio()
{
$.ajax({
type: 'POST',
url: 'dist/ajax/acopio/centrosAcopio.php',
data: {
accion: 'LISTAR'
},
dataType: "json",
error: function(err)
{
console.log(err)
},
success: function(response)
{
switch(response.success)
{
case 1:
$(".tablecentroacopio").DataTable({
data: response.data,
columns:[
{
data: null,
defaultContent: "<button type='button' class='btn btn-success btn-editar'><i class='fa fa-pencil'> </i></button>",
className:'text-center'
},
{
data: 'nombre',
className:'text-center'
},
{
data: 'direccion',
className:'text-center'
},
{
className:'text-center',
render: function( data, type, row, meta ){
return `
<label>
<input type="checkbox" class="js-switch" ${row['estado'] == 'I' ? '' : 'checked'} /> ${row['estado'] == 'A' ? 'Activo' : 'Inactivo'}
</label>
`
}
},
{
className: "text-center",
render: function( data, type, row, meta )
{
if( row['latitud'] != "" && row['longitud'] != "" )
{
return `
<a target="_blank" href="https://maps.google.com/?q=${ row['latitud'] },${ row["longitud"] }" >
<i class='fa fa-map-marker fa-2x'> </i>
</a>
`
}else{
return `
Sin ubicación
`
}
}
}
],
initComplete : function() {
this.api().rows().every( function ( rowIdx, tableLoop, rowLoop ) {
this.nodes().to$().find('.js-switch').each(function(i, e) {
var switchery = new Switchery(e, {
color: '#26B99A',
size:"small"
})
})
})
},
})
break;
case 2:
alert(response.mensaje)
break;
case 3:
document.reload();
break;
}
}
})
}
</script>
</body>
</html>