-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
232 lines (216 loc) · 7.48 KB
/
script.js
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
"use strict";
let xmlHttp, id, mesas, reservas = [], nombrereserva = [], idreservas = [] ,c, frmDialog , numeromesa,idres;
$(() => {
cargarRestaurantes();
confValid();
xmlHttp = crearXML();
$("#rest").on("change", cargarEmpleados);
confFrmMod();
$("#reservas").attr("display","hidden");
})
function cargarRestaurantes() {
$.ajax({
url: "php/restaurantes.php",
method: "POST",
dataType: "json"
})
.done((response, textStatus, jqXHRs) => {
console.log(response);
$("tbody tr").remove(); //limpiar
$(response.data).each((ind, ele) => {
$("#rest").append("<option value='"+ele.mesas+"' id=" + ele.idrest + ">" + ele.name + "</option>");
})
})
}
function cargarEmpleados() {
xmlHttp.open("POST", "php/empleados.php");
xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xmlHttp.onreadystatechange = function () {
if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {
let objeto = JSON.parse(xmlHttp.responseText);
// console.log(objeto);
$("#emp>option").remove();
$(objeto.data).each((ind, ele) => {
$("#emp").append("<option id=" + ele.idemp + ">" + ele.nomape + "</option>");
})
}
}
id = $("#rest option:selected").attr("id");
xmlHttp.send("id=" + id);
}
function confValid() {
$(".form-horizontal").validate({
errorElement: "em",
errorPlacement: function (error, element) {
error.addClass("invalid-feedback");
error.insertAfter(element);
},
highlight: function (element) { //cuando se produce un error
$(element).addClass("is-invalid").removeClass("is-valid");
},
unhighlight: function (element) {
$(element).addClass("is-valid").removeClass("is-invalid");
},
rules: {
rest: 'required',
emp: 'required',
},
messages: {
rest: {
required: "El curso es obligatorio",
},
emp: {
required: "El modulo es obligatoria",
}
},
submitHandler: function (form) {
cargarMesas();
}
})
}
function cargarMesas() {
reservas = [];
nombrereserva = [];
idreservas = [];
$.ajax({
url: "php/consReservas.php",
data: {
idrest: $("#rest option:selected").attr('id'),
fecha: $("#fechaR").val(),
},
type: "GET",
dataType: "json"
})
.done((response, textStatus, jqXHRs) => {
$("#comedor").children().remove();
$(response.data).each((ind, ele) => {
reservas.push(ele.mesa);
nombrereserva.push(ele.nomapecli);
idreservas.push(ele.idreservas);
})
mesas = $("#rest option:selected").val();
c = 0;
for (let i = 0; i < mesas; i++) {
if (reservas.indexOf(i+1) == -1) {
$("#comedor").append("<img name='"+(i+1)+"' src='imagenes/mesaLibre.png' title='Mesa Disponible'>");
} else {
$("#comedor").append("<img name='"+(i+1)+"' id='"+idreservas[c]+"' src='imagenes/mesaOcupada.png' title='Reservado a: " + nombrereserva[c] + "'>");
c++;
}
}
$("img").tooltip();
mesasLibres();
mesasOcupadas();
})
}
function mesasLibres() {
$("img[src='imagenes/mesaLibre.png']").on("click", function() {
numeromesa = $(this).attr("name");
frmDialog.dialog("option", "title", "Reservar mesa");
frmDialog.dialog("open");
});
}
function mesasOcupadas() {
$("img[src='imagenes/mesaOcupada.png']").on("click", function() {
idres = $(this).attr("id");
Swal.fire({
title: 'Eliminar Reserva',
text: "Si aceptas se eliminará la reserva de esta mesa",
icon: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Eliminar'
}).then((result) => {
if (result.value) {
Swal.fire(
'Eliminada!',
'La reserva se ha eliminado',
'success'
)
delReserva();
$(this).attr("src","imagenes/mesaLibre.png");
$(this).attr("data-original-title","Mesa Libre");
$("img").off("click");
mesasLibres();
mesasOcupadas();
}
})
});
}
function delReserva(){
$.ajax({
data: {
id : idres,
},
url: "php/delReservas.php",
method: "POST",
dataType: "json"
})
.done((response, textStatus, jqXHRs) => {
})
}8
function confFrmMod() {
$('.frmReservas').validate({
errorElement: "em",
errorPlacement: function (error, element) {
error.addClass("invalid-feedback");
error.insertAfter(element);
},
highlight: function (element) { //cuando se produce un error
$(element).addClass("is-invalid").removeClass("is-valid");
},
unhighlight: function (element) {
$(element).addClass("is-valid").removeClass("is-invalid");
},
rules: {
nameApeCli: { required: true },
numCom: { required: true }
},
messages: {
nameApeCli: {
required: "El nombre es obligatorio",
},
numCom: {
required: "El nº de comensales es obligatorio",
}
},
submitHandler: function (form) {
reservarMesa();
}
});
frmDialog = $("#reservas").dialog({
autoOpen: false,
width: 500,
modal: true,
resizable: false,
draggable: false,
});
}
function reservarMesa(){
frmDialog.dialog("close");
let datos = $(".frmReservas").serialize() + "&rest=" + $("#rest option:selected").attr('id') + "&emp=" + $("#emp option:selected").attr('id') + "&fecha=" + $("#fechaR").val() + "&mesa=" + numeromesa;
$.ajax({
url: "php/saveReservas.php",
data: datos,
type: "GET",
dataType: "json" //recibir
})
.done((response, textStatus, jqXHRs) => {
console.log(response);
Swal.fire({
title: 'Reserva realizada',
text: "Su reserva se ha completado correctamenta",
icon: 'success',
confirmButtonColor: 'blue',
confirmButtonText: 'Ok'
}).then((result) => {
$( `img[name='${numeromesa}']` ).attr("src","imagenes/mesaOcupada.png");
$( `img[name='${numeromesa}']` ).attr("data-original-title","Reservado");
$( `img[name='${numeromesa}']` ).attr("id",response.id);
$("img").off("click");
mesasLibres();
mesasOcupadas();
})
})
}