-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathverPedido.php
125 lines (116 loc) · 5.67 KB
/
verPedido.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PharmacyApp - Ver Pedido</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/api.js"></script> <!-- Script de JavaScript -->
<script src="JS/fontawesome.min.js" defer></script> <!-- Font Awesome -->
</head>
<body>
<?php session_start(); ?>
<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>
<!-- Sección de inicio -->
<?php
require "./funciones/conexion_bbdd.php";
$id_pedido = $_POST['idPedido'];
$sql = "SELECT idMedicamento, cantidad, precioUnitario FROM lineaspedidos WHERE idPedido = ?";
$stmt = $conn->prepare($sql);
$stmt->bind_param("i", $id_pedido); // Aquí se cambió $idPedido a $id_pedido
$stmt->execute();
$result = $stmt->get_result();
?>
<h2 style="margin-left:10%" class="my-2">Detalles del pedido #<?php echo $id_pedido; ?></h2>
<div>
<table>
<thead>
<tr>
<th>Nombre</th>
<th>Cantidad</th>
<th>Precio</th>
</tr>
</thead>
<tbody>
<?php
if ($result->num_rows > 0) {
while ($row = $result->fetch_assoc()) {
$sql2 = "SELECT nombre FROM medicamentos WHERE idMedicamento = " . $row['idMedicamento'];
$result2 = $conn->query($sql2)->fetch_assoc()['nombre'];
echo "<tr>";
echo "<td>" . $result2 . "</td>";
echo "<td>" . $row['cantidad'] . "</td>";
echo "<td>" . $row['precioUnitario'] . "</td>";
echo "</tr>";
}
} else {
echo "<tr><td colspan='3'>No hay productos en este pedido</td></tr>";
}
echo "</tbody>";
echo "</table>";
echo "<a href='./pedidos.php' style='margin-left:10%'><button>Volver a pedidos</button></a>";
echo "</div>";
?>
</tbody>
</table>
</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>
</html>