-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarrito.php
420 lines (379 loc) · 20.5 KB
/
carrito.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Carrito - PharmacyApp</title>
<link rel="icon" href="img/favicon.png" type="image/x-icon"> <!-- favicon -->
<link rel="stylesheet" href="./CSS/estilo.css"> <!-- Hoja de estilos -->
<link href="CSS/bootstrap.min.css" rel="stylesheet"><!-- Bootstrap -->
<script src="JS/fontawesome.min.js" defer></script> <!-- Font Awesome -->
<?php require "./funciones/conexion_bbdd.php" ?>
<?php require "./funciones/medicamento.php" ?>
</head>
<body>
<?php
session_start();
if (isset($_SESSION["usuario"])) {
$usuario = $_SESSION["usuario"];
$rol = $_SESSION["rol"];
} else {
header("Location: /login.php");
}
if ($rol != "admin" && $rol != "cliente") {
header("Location: /index.php");
}
?>
<header>
<div class="header-top">
<a href="/index.php" class="nav-logo"><img id="imagen-nav" src="img/logo_sin_fondo.png" alt="Logo"></a>
<div class="container">
<div class="buscador">
<form action="buscar.php" method="get">
<input type="text" name="termino" placeholder="Buscar productos...">
<button type="submit"><img src="/img/busqueda.png" alt="Buscar"></button>
</form>
</div>
<div class="cuenta-carrito">
<?php
// Si el usuario está logueado
if (isset($_SESSION['usuario'])) {
echo '<a href="./dashboard.php"><img src="/img/avatar.png" alt="Logo" class="icon icon-account" style="width: 30px; height: 30px; margin-right: 5px; "> ' . $_SESSION['usuario'] . '</a>';
if ($_SESSION['rol'] == "admin") {
echo '<a href="/anadir_medicamentos.php"><img src="/img/anadir-medicamento.png" alt="anadirmMedicamento" style="width: 30px; height: 30px ;">Añadir Medicamento</a>';
}
echo '<a href="/funciones/cerraSesion.php"><img src="/img/cerrar-sesion.png" alt="cerrarSesión" style="width: 25px; height: 20px;">Cerrar sesión</a>';
echo '<a href="./carrito.php" ><img src="/img/carrito.png" alt="Carrito" style="width: 25px; height: 20px; margin-right: 5px">Carrito</a>';
} else { // Si no está logueado
echo '<a href="/login.php" class="cuenta"><img src="/img/iniciar-sesion.png" alt="iniciarsesion" style="width: 25px; height: 20px; margin-right: 5px;">Iniciar Sesión</a>';
}
?>
</div>
</div>
</div>
<nav>
<ul class="menu-verde">
<li><a href="/index.php">Inicio</a></li>
<li><a href="/medicamentos.php">Medicamentos</a></li>
<li><a href="/contacto.php">Contacto</a></li>
</ul>
</nav>
</header>
<main>
<div class="container">
<h2 class="text-center mb-3">Tu carrito de compra</h2>
<div>
<table class=" container table table-striped table-hover">
<thead class="table table-dark">
<tr>
<th>Nombre</th>
<th>Precio</th>
<th>Descripción</th>
<th>Cantidad</th>
<th>Imagen</th>
<th></th>
</tr>
</thead>
<tbody>
<?php
// Consulta para obtener medicamentos en la carrito
$sql = "SELECT pc.idMedicamento, p.nombre, p.descripcion, p.precio, pc.cantidad, p.imagen, pc.idReceta
FROM medicamentosrecetas pc
JOIN medicamentos p ON pc.idMedicamento = p.idMedicamento
JOIN recetas r ON pc.idReceta = r.idReceta
JOIN usuarios u ON r.nick = u.nick
WHERE u.nick = '$usuario'";
$resultado = $conn->query($sql);
$medicamentos = [];
// Creación de objetos medicamentos a partir de los resultados
$numeroMedicamentos = 0;
while ($fila = $resultado->fetch_assoc()) {
$nuevo_medicamento = new Medicamento(
$fila["idMedicamento"],
$fila["nombre"],
$fila["descripcion"],
$fila["precio"],
$fila["cantidad"],
$fila["imagen"]
);
$idReceta = $fila["idReceta"];
array_push($medicamentos, $nuevo_medicamento);
$numeroMedicamentos++;
}
// Mostrar medicamentos en la tabla
foreach ($medicamentos as $medicamento) {
echo "<tr>";
echo "<td>" . $medicamento->nombre . "</td>";
echo "<td>" . $medicamento->precio . "</td>";
echo "<td>" . $medicamento->descripcion . "</td>";
echo "<td>";
echo "<select class='quantity' data-price='{$medicamento->precio}'>";
for ($i = 1; $i <= 10; $i++) {
$selected = $i == $medicamento->cantidad ? 'selected' : '';
echo "<option value='{$i}' {$selected}>{$i}</option>";
}
echo "</select>";
echo "</td>";
echo "<td><img witdh='50' height='100' src='{$medicamento->imagen}'></td>";
echo "<td>";
echo "<form method='POST' action='./funciones/eliminarProducto.php'>";
echo "<input type='hidden' name='idMedicamento' value='{$medicamento->idMedicamento}'>";
echo "<input type='hidden' name='precio' value='{$medicamento->precio}'>";
echo "<button class='btn btn-danger'>Eliminar</button>";
echo "</form>";
echo "</td>";
echo "</tr>";
}
?>
</tbody>
</table>
<!-- Mostrar precio total del carrito -->
<?php
$sql = "SELECT precioTotal FROM recetas WHERE nick = '$usuario'";
$resultado = $conn->query($sql);
$fila = $resultado->fetch_assoc();
if ($fila !== null && isset($fila['precioTotal'])) {
$precioTotal = $fila['precioTotal'];
} else {
$precioTotal = 0;
}
?>
<h6 id="shippingCost"></h6>
<h2 id="totalCost"></h2>
<script>
document.addEventListener('DOMContentLoaded', function() {
var quantityElements = document.querySelectorAll('.quantity');
var totalCostElement = document.getElementById('totalCost');
var shippingCostElement = document.getElementById('shippingCost');
var precioTotalInput = document.getElementById('precioTotal');
var precioTotal = <?php echo $precioTotal ?>;
var numeroMedicamentos = <?php echo $numeroMedicamentos ?>;
var idReceta = <?php echo $idReceta ?>;
var totalCost = precioTotal;
var shippingCost = 0;
// Calcular el precio total y el coste de envío
quantityElements.forEach(function(element) {
element.addEventListener('change', function() {
var price = parseFloat(element.getAttribute('data-price'));
var quantity = parseInt(element.value);
totalCost = precioTotal;
totalCost += price * (quantity - 1);
var city = document.getElementById('Ciudad').value;
shippingCost = city === 'Malaga' ? 2.99 : 10.00;
totalCost += shippingCost;
totalCostElement.textContent = 'Total: ' + totalCost.toFixed(2) + '€';
shippingCostElement.textContent = 'Coste de envío: ' + shippingCost.toFixed(2) + '€';
precioTotalInput.value = totalCost.toFixed(2);
});
});
// Mostrar el precio total y el coste de envío
totalCostElement.textContent = 'Total: ' + totalCost.toFixed(2) + '€';
shippingCostElement.textContent = 'Coste de envío: ' + shippingCost.toFixed(2) + '€';
precioTotalInput.value = totalCost.toFixed(2);
});
</script>
<!-- Tarjeta para mostrar la dirección de envío -->
<div id="addressCard" style="border: 1px solid #ccc; border-radius: 5px; padding: 10px; max-width: 300px; box-shadow: 0 2px 5px rgba(0,0,0,0.3); <?php echo $precioTotal > 0 ? '' : 'display: none;'; ?>">
<h3>Dirección de envío</h3>
<p id="addressText">Por favor, introduce tu dirección de envío.</p>
</div>
<?php
if ($precioTotal > 0) {
?>
<form id ="paymentForm2" method="post" action="/funciones/realizarPedido.php">
<input type="hidden" name="precioTotal" value="<?php echo $precioTotal ?>">
<input type="hidden" name="idReceta" value="<?php echo $idReceta ?>">
<input type="hidden" name="numeroMedicamentos" value="<?php echo $numeroMedicamentos ?>">
<input type="hidden" id="precioTotal" name="precioTotal">
<button type="submit" class="btn btn-primary btn-small" id="orderButton" style="width: 150px;">Realizar pedido</button>
<!-- Agregamos los botones para editar la dirección de envío y el método de pago -->
<button type="button" class="btn btn-primary btn-small" id="editAddressButton" style="width: 200px;">Editar dirección de envío</button>
<button type="button" class="btn btn-primary btn-small" id="editPaymentButton" style="width: 150px;">Método de pago</button>
</form>
<?php
} else {
echo "<p>No puedes realizar un pedido con el carrito vacío.</p>";
}
?>
<!-- Popup para editar la información de pago -->
<div id="paymentPopup" style="display: none; position: fixed; z-index: 1; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center;">
<div style="background-color: #fefefe; padding: 20px; border: 1px solid #888; width: 80%; max-width: 500px; overflow-y: auto; max-height: 90vh;">
<form id="paymentForm">
<button type="button" id="closePaymentPopupButton" style="float: right; background: none; border: none; font-size: 20px;">×</button>
<h3>Editar información de pago</h3>
<label for ="CardName">Nombre en la tarjeta</label>
<input type="text" id="CardName" name="CardName" required>
<label for ="CardNumber">Número de tarjeta</label>
<input type="text" id="CardNumber" name="CardNumber" required>
<label for ="ExpiryDate">Fecha de caducidad</label>
<input type="text" id="ExpiryDate" name="ExpiryDate" required>
<label for ="CVV">CVV</label>
<input type="text" id="CVV" name="CVV" required>
<button type="submit" class="btn btn-primary">Guardar información de pago</button>
</form>
</div>
</div>
<div id="payPopup" style="display: none; position: fixed; z-index: 1; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.4); align-items: center; justify-content: center;">
<div style="background-color: #fefefe; margin: 15% auto; padding: 20px; border: 1px solid #888; width: 80%; text-align: center;">
<img src="img/compra.png" alt="Descripción de la imagen" style="width: 50px; height: 50px;">
<h3>Compra realizada con éxito</h3>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
document.getElementById('orderButton').addEventListener('click', function(e) {
e.preventDefault();
document.getElementById('payPopup').style.display = 'flex'; // Muestra el popup
setTimeout(function() {
document.getElementById('payPopup').style.display = 'none'; // Oculta el popup después de 2 segundos
document.getElementById('paymentForm2').submit(); // Envía el formulario
}, 2000);
});
});
</script>
</main>
<footer>
<div class="footer-container">
<div class="row">
<div class="col-lg-2">
<img src="img/logo_sin_fondo.png" alt="Logo" id="imagen-footer">
</div>
<div class="col-lg-7">
<p> © Desarrollado por: Pablo Jesús Calvente Ramírez, Fernando Dominguez Lago, Pablo Pérez Iza
& Victor
Moreno Benítez</p>
</div>
<div class="col-lg-2">
<p>Enlaces de interés</p>
<ul>
<li class="footer-li"><a href="/politicaPrivacidad.php">Política de privacidad</a></li>
<li class="footer-li"><a href="/terminosCondiciones.php">Términos y condiciones</a></li>
<li class="footer-li"><a href="/cookies.php">Política de cookies</a></li>
</ul>
</div>
</div>
</div>
</footer>
<script src="JS/bootstrap.bundle.min.js"></script> <!-- Bootstrap -->
<!-- Popup para editar la dirección de envío -->
<div id="addressPopup" style="display: none; position: fixed; z-index: 1; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center;">
<div style="background-color: #fefefe; padding: 20px; border: 1px solid #888; width: 80%; max-width: 500px; overflow-y: auto; max-height: 90vh;">
<form id="addressForm">
<button type="button" id="closePopupButton" style="float: right; background: none; border: none; font-size: 20px;">×</button>
<h3>Editar dirección de envío</h3>
<label for ="Nombre">Nombre</label>
<input type="text" id="Nombre" name="Nombre" required>
<label for ="Apellidos">Apellidos</label>
<input type="text" id="Apellidos" name="Apellidos" required>
<label for = "Direccion">Dirección</label>
<input type="text" id="Direccion" name="Direccion" required>
<label for = "Ciudad">Ciudad</label>
<input type="text" id="Ciudad" name="Ciudad" required>
<label for = "CodigoPostal">Código Postal</label>
<input type="text" id="CodigoPostal" name="CodigoPostal" required>
<button type="submit" class="btn btn-primary">Guardar Dirección</button>
</form>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
var addressForm = document.getElementById('addressForm');
var shippingCostElement = document.getElementById('shippingCost');
// Actualizar el coste de envío cuando se envía el formulario de dirección de envío
addressForm.addEventListener('submit', function(event) {
event.preventDefault();
var city = document.getElementById('Ciudad').value;
var shippingCost = city === 'Malaga' ? 2.99 : 10.00;
shippingCostElement.textContent = 'Coste de envío: ' + shippingCost + '€';
});
});
</script>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Obtenemos el popup y el botón
var popup = document.getElementById('addressPopup');
var button = document.getElementById('editAddressButton');
// Nos aseguramos de que el popup esté oculto al cargar la página
popup.style.display = 'none';
// Mostramo el popup cuando se hace clic en el botón "Editar dirección de envío"
button.addEventListener('click', function() {
popup.style.display = 'flex';
});
// Ocultar el popup cuando se hace clic en el botón de cierre
document.getElementById('closePopupButton').addEventListener('click', function() {
popup.style.display = 'none';
});
// Guardar los datos de la dirección en el almacenamiento local y actualizar la tarjeta de dirección cuando se envía el formulario
document.getElementById('addressForm').addEventListener('submit', function(e) {
e.preventDefault();
var nombre = document.getElementById('Nombre').value;
var apellidos = document.getElementById('Apellidos').value;
var direccion = document.getElementById('Direccion').value;
var ciudad = document.getElementById('Ciudad').value;
var codigo = document.getElementById('CodigoPostal').value;
var addressText = 'Nombre: ' + nombre + '<br>Apellidos: ' + apellidos + '<br>Dirección: ' + direccion + '<br>Ciudad: ' + ciudad + '<br>Código Postal: ' + codigo;
document.getElementById('addressText').innerHTML = addressText;
document.getElementById('addressPopup').style.display = 'none';
});
});
</script>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Obtén los popups y los botones
var paymentPopup = document.getElementById('paymentPopup');
var editPaymentButton = document.getElementById('editPaymentButton');
// Nos aseguramos de que los popups estén ocultos al cargar la página
paymentPopup.style.display = 'none';
// Mostrar el popup de método de pago cuando se hace clic en el botón "Método de pago"
editPaymentButton.addEventListener('click', function() {
paymentPopup.style.display = 'flex';
});
// Ocultar los popups cuando se hace clic en los botones de cierre
document.getElementById('closePaymentPopupButton').addEventListener('click', function() {
paymentPopup.style.display = 'none';
});
// Agregar un guión después de cada bloque de 4 dígitos en el número de la tarjeta
document.getElementById('CardNumber').addEventListener('input', function(e) {
// Limitar la longitud de la entrada a 19 caracteres (16 dígitos y 3 guiones)
if (e.target.value.length > 19) {
e.target.value = e.target.value.slice(0, 19);
} else {
e.target.value = e.target.value.replace(/[^\dA-Z]/g, '').replace(/(.{4})/g, '$1-').trim();
// Eliminar el último guión si la longitud de la entrada es 19
if (e.target.value.length === 19) {
e.target.value = e.target.value.slice(0, -1);
}
}
});
// Limitar la longitud de la entrada a 5 caracteres (2 dígitos, 1 '/', y 2 dígitos)
document.getElementById('ExpiryDate').addEventListener('input', function(e) {
if (e.target.value.length > 5) {
e.target.value = e.target.value.slice(0, 5);
} else {
e.target.value = e.target.value.replace(/[^\d]/g, '').replace(/(.{2})/, '$1/').trim();
}
});
// Limitar la longitud de la entrada de CVV a 3 caracteres
document.getElementById('CVV').addEventListener('input', function(e) {
if (e.target.value.length > 3) {
e.target.value = e.target.value.slice(0, 3);
}
});
// Guardar los datos de pago en el almacenamiento local y actualizar la tarjeta de pago cuando se envía el formulario
document.getElementById('paymentForm').addEventListener('submit', function(e) {
e.preventDefault();
var cardName = document.getElementById('CardName').value;
var cardNumber = document.getElementById('CardNumber').value;
var expiryDate = document.getElementById('ExpiryDate').value;
var cvv = document.getElementById('CVV').value;
document.getElementById('paymentPopup').style.display = 'none';
// Guardar los datos de pago en el almacenamiento local
localStorage.setItem('cardName', cardName);
localStorage.setItem('cardNumber', cardNumber);
localStorage.setItem('expiryDate', expiryDate);
localStorage.setItem('cvv', cvv);
});
});
</script>
</body>
</html>