-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproductosv2.php
552 lines (504 loc) · 28.5 KB
/
productosv2.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
<?
session_start();
require 'funciones.php';
if( !isLogin() )
{
header("location: login.php");
}
?>
<!DOCTYPE html>
<html lang="en">
<head><meta charset="gb18030">
<!-- Meta, title, CSS, favicons, etc. -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- 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">
<!-- Custom Theme Style -->
<link href="../build/css/custom.min.css" rel="stylesheet">
<!-- DATATABLE CSS -->
<link rel='stylesheet' type="text/css" href='https://cdn.datatables.net/1.10.24/css/jquery.dataTables.min.css' />
<!-- Switchery -->
<link rel='stylesheet' href="../vendors/switchery/dist/switchery.min.css" >
<!-- Choseen -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/chosen.min.css"/>
<link rel="stylesheet" href="js/load/jquery.loadingModal.css">
<?php
titulo_header();
?>
</head>
<body class="nav-md">
<div class="container body">
<div class="main_container">
<?php
menu_lateral_v2();
?>
<!-- top navigation -->
<div class="top_nav">
<?
navBar();
?>
</div>
<!-- /top navigation -->
<!-- page content -->
<div class="right_col" role="main">
<div class="page-title">
<div class="title_left">
<h3>Listado de productos</h3>
</div>
</div>
<div class="x_content" style="float:none">
<div class="" role="tabpanel" data-example-id="togglable-tabs">
<ul id="myTab" class="nav nav-tabs bar_tabs nav-justified" role="tablist" style="padding: 0 !important">
<li role="presentation" class="active" id="home">
<a href="#tab_content1" id="home-tab" role="tab" data-toggle="tab" aria-expanded="true">
PRODUCTOS
</a>
</li>
</ul>
<div id="myTabContent" class="tab-content">
<div role="tabpanel" class="tab-pane fade active in" id="tab_content1" aria-labelledby="home-tab">
<hr />
<div class='row'>
<div class='col-md-7'>
<table class='table table-bordered' id="tablaProductos">
<thead>
<tr>
<th class="text-center">
GESTIÓN
</th>
<th class="text-center">
NOMBRE DEL PRODUCTO
</th>
<th class="text-center">
DESCRIPCIÓN DEL PRODUCTO
</th>
<th class='text-center'>
CATEGORIA DEL PRODUCTO
</th>
<th class="text-center">
ESTADO
</th>
</tr>
</thead>
</table>
</div>
<div class='col-md-5'>
<form id="formProducto">
<input type='hidden' id='idproducto' name='idproducto' value='0' />
<div class="row">
<div class='col-md-12 text-center'>
<h3>Registro y Actualización de productos</h3>
</div>
</div>
<hr />
<div class='row' style='margin-bottom: 3%'>
<div class='col-md-12'>
<div class='form-group'>
<label for='nombreProducto' class='control-form-label'>Nombre del producto *</label>
<input type='text' placeholder='Ingrese el nombre del producto' class='form-control' name='nombreProducto' id='nombreProducto' required />
</div>
</div>
</div>
<div class='row' style='margin-bottom: 3%'>
<div class='col-md-12'>
<div class='form-group'>
<label for='descripcionProducto' class='control-form-label'>Descripción del producto *</label>
<textarea class='form-control' id='descripcionProducto' name='descripcionProducto' placeholder='Ingrese descripción del producto'></textarea>
</div>
</div>
</div>
<div class='row' style='margin-bottom: 3%'>
<div class='col-md-12'>
<div class='form-group'>
<label for='categoriaProducto' class='control-form-label'>Seleccione unidades de medidas *</label>
<select class='form-control chosen-select' id='unidadesmedidas' name='unidadesmedidas[]' multiple data-placeholder="Seleccione la unidad de medida">
<!--<option value='0'> Seleccione la unidad de medida </option>-->
</select>
</div>
</div>
</div>
<div class='row' style='margin-bottom: 3%'>
<div class='col-md-12'>
<div class='form-group'>
<label for='categoriaProducto' class='control-form-label'>Seleccione un categoria *</label>
<select class='form-control' id='categoriaProducto' name='categoriaProducto'>
<option value='0'> Escoja una categoria </option>
</select>
</div>
</div>
</div>
<div class='row'>
<div class='col-md-6'>
<div class='form-group'>
<button type='submit' class='btn btn-block btn-success btn-round' id='buttonGuardar'>Guardar Nuevo Producto</button>
</div>
</div>
<div class='col-md-6'>
<div class='form-group'>
<button type='reset' class='btn btn-block btn-info btn-round' id='buttonFormatear'>Limpiar Formulario</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- jQuery -->
<script type="text/javascript" language="javascript" src="../vendors/jquery/dist/jquery.min.js"></script>
<!-- Bootstrap -->
<script type="text/javascript" language="javascript" src="../vendors/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- Custom Theme Scripts -->
<script type="text/javascript" language="javascript" src="../build/js/custom.js"></script>
<!--DATATABLE JS-->
<script type="text/javascript" language="javascript" src="https://cdn.datatables.net/1.10.24/js/jquery.dataTables.min.js"></script>
<!-- Switchery -->
<script type="text/javascript" language="javascript" src="../vendors/switchery/dist/switchery.min.js"></script>
<!--SWEET-ALERT-JS-->
<script type="text/javascript" language="javascript" src="//cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<!-- SWEET-ALERT -->
<script type="text/javascript" language="javascript" src="https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.all.min.js"></script>
<!-- CHOSEN -->
<script type="text/javascript" language="javascript" src="https://cdn.jsdelivr.net/npm/[email protected]/chosen.jquery.min.js"></script>
<!-- JS SCRIPT APP -->
<script type="text/javascript" language="javascript" src="js/cambiarContrasena.js" ></script>
<script type="text/javascript" language="javascript" src="js/load/jquery.loadingModal.js"></script>
<!--SCRIPT APP PAGE-->
<script type="text/javascript" language="javascript">
$(document).ready(function(){
// ESTABLECIMIENTO DE LOS VALORES POR DEFAULT DE DATATABLE
$.extend( $.fn.dataTable.defaults, {
destroy: true,
responsive: true,
data: [],
language:{
url: "https://cdn.datatables.net/plug-ins/1.10.24/i18n/Spanish.json"
},
} );
// LISTAR PRODUCTOS
cargarProducto()
$("#buttonFormatear").on('click', function(){
limpiarFomulario( 'formProducto', 'Guardar Nuevo Producto' )
listarCategoriaProductos()
})
$("#tablaProductos").on('click', '.btnEditar', function(){
let data = $("#tablaProductos").DataTable().row($(this).closest('tr')).data()
var arrayValueChosen = []
data['unidadMedida'].forEach(function(item){
arrayValueChosen.push( Number( item['idmedida'] ) )
})
$("#unidadesmedidas").val(arrayValueChosen).trigger('chosen:updated');
listarCategoriaProductos( 1, parseInt(data['id_categoria']) )
$("#idproducto").val( data['id_producto'] )
$("#nombreProducto").val( data['nombre'] )
$("#descripcionProducto").val( data['descripcion'] )
$("#buttonGuardar").text("Actualizar Producto")
})
$("#tablaProductos").on('click', '.js-switch', function(){
let data = $("#tablaProductos").DataTable().row($(this).closest('tr')).data()
Swal.fire({
title: 'Cambiar estado del producto!',
text: `Esta seguro de '${ ( data['estado'] == 'A' ? 'DESACTIVAR' : 'ACTIVAR' ) }' este producto`,
icon: 'info',
confirmButtonText: 'Confirmar',
showCancelButton: true,
cancelButtonText: `Cancelar`,
}).then((result)=>{
if( result.isConfirmed )
{
$.ajax({
type: 'POST',
url: 'dist/ajax/productoCategoria/productoCategoria.php',
data: {
idproducto: data['id_producto'],
estado: ( data['estado'] == 'A' ? 'I' : 'A' ),
metodo: 'PRODUCTO',
submetodo: 'ACTUALIZARESTADO'
},
error: function( err )
{
console.log( err )
},
success: function( response )
{
switch( response.success )
{
case 1:
cargarProducto()
break
case 3:
location.reload()
break
}
}
})
}else{
cargarProducto()
}
})
})
$("#formProducto").submit(function(event){
// event.preventDefault()
var flagFormulario = true,
optionSelected = $("#unidadesmedidas").val()
try{
if( parseInt( $("#categoriaProducto").val() ) == 0 )
{
throw 'Debe selecionar la categoria del producto'
}
if( optionSelected == null || optionSelected.includes("0") )
{
throw("Debe seleccionar al menos una unidad de medida")
}
}catch(e)
{
alert( e )
flagFormulario = false
}
if( flagFormulario )
{
var formData = new FormData( $("#formProducto")[0] )
formData.append('metodo', 'PRODUCTO')
formData.append('submetodo', 'ACTUALIZARPRODUCTOS')
$.ajax({
type: 'POST',
url: 'dist/ajax/productoCategoria/productoCategoriav2.php',
data: formData,
cache: false,
processData: false,
contentType: false,
error: function( err )
{
console.log( err )
},
beforeSend: function()
{
$("#buttonGuardar").prop({'disabled': true}).html('<i class="fa fa-spinner fa-spin"></i> Guardando Nuevo Producto ');
},
success: function( response )
{
// console.log( response )
switch( response.success )
{
case 1:
cargarProducto()
limpiarFomulario( 'formProducto', 'Guardar Nuevo Producto' )
$("#unidadesmedidas").val('').trigger("chosen:updated")
break
case 2:
console.log("Error Interno")
break
case 3:
location.reload()
break
}
},
complete: function()
{
$("#buttonGuardar").prop({'disabled': false}).html(' Guardar Nuevo Producto ');
},
})
}
return false
})
})
function loadingModal(text = null, cargar = true )
{
if( cargar )
{
$('body').loadingModal({text});
$('body').loadingModal('animation', 'foldingCube').loadingModal('backgroundColor', 'black');
$('body').css({cursor: 'no-drop'})
}else{
$('body').loadingModal('hide');
$('body').loadingModal('destroy');
$('body').css({cursor: 'auto'})
}
}
function cargarProducto()
{
$.ajax({
type: 'POST',
url: 'dist/ajax/productoCategoria/productoCategoriav2.php',
data:{
metodo: 'PRODUCTO',
submetodo: 'LISTARPRODUCTOS'
},
beforeSend: function()
{
loadingModal('Obteniendo productos espere....')
},
error: function( err )
{
console.log( err )
},
success: function( response )
{
switch( response.success )
{
case 1:
$("#tablaProductos").DataTable({
data: response.data,
columns:[
{
className: 'text-center',
render: function( )
{
return `<button type='button' class='btn btn-success btnEditar'> <i class='fa fa-pencil'></i> </button>`
}
},
{
className: 'text-center',
data: 'nombre'
},
{
className: 'text-center',
data: 'descripcion'
},
{
className: 'text-center',
data: 'nombreCategoria'
},
{
className: 'text-center',
render: function( data, type, row, meta ){
return `
<label>
<input type="checkbox" class="js-switch" ${ row['estado'] == 'A' ? 'checked' : '' } />
${ row['estado'] == 'A' ? 'ACTIVO' : 'INACTIVO' }
</label>
`
}
},
],
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 3:
location.reload()
break
}
},
complete: function()
{
listarCategoriaProductos()
listarUnidadesMedidasDisponibles()
loadingModal('', false)
}
})
}
function listarCategoriaProductos( cargarTodasCategoria = 0, idcategoria = 0 )
{
$.ajax({
type: 'POST',
url: 'dist/ajax/productoCategoria/productoCategoria.php',
data:{
metodo: 'CATEGORIAS',
submetodo: 'LISTARCATEGORIAS'
},
success: function( response )
{
switch( response.success )
{
case 1:
var optionCategoria = "<option value='0'> Escoja una categoria </option>",
dataCategoria = response.data,
flagDisabeld = true
if( dataCategoria.length > 0)
{
flagDisabeld = false
dataCategoria.forEach(function(item){
if( parseInt(cargarTodasCategoria) == 0 )
{
if( item['estado'] == 'A' )
{
optionCategoria += `<option value='${ item['id_categoria'] }'> ${ item['nombre'] } </option>`
}
}else{
flagDisabeld = true
optionCategoria += `<option value='${ item['id_categoria'] }' ${ parseInt( item['id_categoria'] ) == idcategoria ? 'selected' : '' } > ${ item['nombre'] } </option>`
}
})
}else{
optionCategoria = "<option value='0'> No hay categoria disponible </option>"
}
$("#categoriaProducto").html(optionCategoria).prop({'disabled': flagDisabeld})
break;
case 2:
alert( response.mensaje )
break
case 3:
location.reload()
break
}
}
})
}
function limpiarFomulario( idFormulario, textSubmit = 'Guardar' )
{
$(`#${idFormulario}`).trigger('reset')
$(`#${idFormulario}`).find('input[type=hidden]').val(0)
$(`#${idFormulario}`).find('button[type=submit]').text(textSubmit)
$(`#${idFormulario}`).find("select").val('').trigger("chosen:updated");
}
function listarUnidadesMedidasDisponibles()
{
$.ajax({
type: 'POST',
url: 'dist/ajax/productoCategoria/unidadMedidas.php',
data:{
metodo: 'listarunidadmedidaactivas',
},
success: function( response )
{
switch( response.success )
{
case 1:
var optionCategoria = "",
dataCategoria = response.data,
flagDisabeld = true
if( dataCategoria.length > 0)
{
flagDisabeld = false
dataCategoria.forEach(function(item){
optionCategoria += `<option value='${ item['idunidadmedida'] }'> ${ item['definicion'] } </option>`
})
}else{
optionCategoria = "<option value='0'> No hay categoria disponible </option>"
}
$("#unidadesmedidas").html(optionCategoria).prop({'disabled': flagDisabeld})
break;
case 2:
alert( response.mensaje )
break
case 3:
location.reload()
break
}
},
complete: function()
{
$("#unidadesmedidas").chosen()
}
})
}
</script>
</body>
</html>