-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvisualizarpedido.php
156 lines (140 loc) · 6.11 KB
/
visualizarpedido.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
<?php
include_once 'config.php';
// Iniciar la sesión para almacenar mensajes
session_start();
// Manejar eliminación de pedido
if (isset($_POST['action']) && $_POST['action'] == 'eliminar') {
$id_cliente = $_POST['id_cliente'];
// Eliminar el pedido
$sql = "DELETE FROM pedidos WHERE id_clientes=?";
$stmt = $conn->prepare($sql);
$stmt->bind_param("i", $id_cliente);
if ($stmt->execute()) {
echo "<p>Pedido eliminado con éxito.</p>";
} else {
echo "<p>Error al eliminar el pedido: " . $stmt->error . "</p>";
}
$stmt->close();
}
// Manejar edición de pedido
if (isset($_POST['action']) && $_POST['action'] == 'editar') {
if (isset($_POST['id_cliente'])) {
$id_cliente = $_POST['id_cliente'];
$nombre = $_POST['nombre'] ?? '';
$apellidos = $_POST['apellidos'] ?? '';
$correo = $_POST['correo'] ?? '';
$telefono = $_POST['telefono'] ?? '';
$negocio = $_POST['negocio'] ?? '';
$pedidos = $_POST['pedidos'] ?? '';
$comentarios = $_POST['comentarios'] ?? '';
// Actualizar el pedido
$sql = "UPDATE pedidos SET nombre=?, apellidos=?, correo=?, telefono=?, negocio=?, pedidos=?, comentarios=? WHERE id_clientes=?";
$stmt = $conn->prepare($sql);
$stmt->bind_param("sssssssi", $nombre, $apellidos, $correo, $telefono, $negocio, $pedidos, $comentarios, $id_cliente);
if ($stmt->execute()) {
echo "<p>Pedido actualizado con éxito.</p>";
} else {
echo "<p>Error al actualizar el pedido: " . $stmt->error . "</p>";
}
$stmt->close();
}
}
// Obtener datos de la tabla pedidos
$sql = "SELECT id_clientes, nombre, apellidos, correo, telefono, negocio, pedidos, comentarios FROM pedidos";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
echo "<h1>Lista de Pedidos</h1>";
echo "<table border='1'>
<tr>
<th>ID Cliente</th>
<th>Nombre</th>
<th>Apellidos</th>
<th>Correo</th>
<th>Teléfono</th>
<th>Negocio</th>
<th>Pedidos</th>
<th>Comentarios</th>
<th>Acciones</th>
</tr>";
while($row = $result->fetch_assoc()) {
$id_cliente = $row["id_clientes"];
echo "<tr>
<td>" . htmlspecialchars($row["id_clientes"]) . "</td>
<td>" . htmlspecialchars($row["nombre"]) . "</td>
<td>" . htmlspecialchars($row["apellidos"]) . "</td>
<td>" . htmlspecialchars($row["correo"]) . "</td>
<td>" . htmlspecialchars($row["telefono"]) . "</td>
<td>" . htmlspecialchars($row["negocio"]) . "</td>
<td>" . htmlspecialchars($row["pedidos"]) . "</td>
<td>" . htmlspecialchars($row["comentarios"]) . "</td>
<td>
<form action='' method='post' style='display:inline;'>
<input type='hidden' name='id_cliente' value='" . htmlspecialchars($id_cliente) . "'>
<input type='hidden' name='action' value='editar'>
<button type='submit'>Editar</button>
</form>
<form action='' method='post' style='display:inline;'>
<input type='hidden' name='id_cliente' value='" . htmlspecialchars($id_cliente) . "'>
<input type='hidden' name='action' value='eliminar'>
<button type='submit' onclick='return confirm(\"¿Estás seguro de que deseas eliminar este pedido?\");'>Eliminar</button>
</form>
</td>
</tr>";
}
echo "</table>";
} else {
echo "No hay pedidos registrados.";
}
// Mostrar formulario de edición si se solicita
if (isset($_POST['action']) && $_POST['action'] == 'editar') {
$id_cliente = $_POST['id_cliente'] ?? '';
if ($id_cliente) {
// Obtener los datos del pedido
$sql = "SELECT * FROM pedidos WHERE id_clientes = ?";
$stmt = $conn->prepare($sql);
$stmt->bind_param("i", $id_cliente);
$stmt->execute();
$result = $stmt->get_result();
$pedido = $result->fetch_assoc();
if (!$pedido) {
die("Pedido no encontrado.");
}
?>
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Editar Pedido</title>
</head>
<body>
<h1>Editar Pedido</h1>
<form action="" method="post">
<input type="hidden" name="id_cliente" value="<?php echo htmlspecialchars($pedido['id_clientes']); ?>">
<input type="hidden" name="action" value="editar">
<label for="nombre">Nombre:</label>
<input type="text" id="nombre" name="nombre" value="<?php echo htmlspecialchars($pedido['nombre']); ?>" required><br>
<label for="apellidos">Apellidos:</label>
<input type="text" id="apellidos" name="apellidos" value="<?php echo htmlspecialchars($pedido['apellidos']); ?>" required><br>
<label for="correo">Correo:</label>
<input type="email" id="correo" name="correo" value="<?php echo htmlspecialchars($pedido['correo']); ?>" required><br>
<label for="telefono">Teléfono:</label>
<input type="text" id="telefono" name="telefono" value="<?php echo htmlspecialchars($pedido['telefono']); ?>" required><br>
<label for="negocio">Negocio:</label>
<input type="text" id="negocio" name="negocio" value="<?php echo htmlspecialchars($pedido['negocio']); ?>" required><br>
<label for="pedidos">Pedidos:</label>
<input type="text" id="pedidos" name="pedidos" value="<?php echo htmlspecialchars($pedido['pedidos']); ?>" required><br>
<label for="comentarios">Comentarios:</label>
<textarea id="comentarios" name="comentarios"><?php echo htmlspecialchars($pedido['comentarios']); ?></textarea><br>
<button type="submit">Actualizar</button>
</form>
<a href="pedidos.html">Volver a pedidos</a>
</body>
</html>
<?php
} else {
echo "No se especificó el ID del cliente para editar.";
}
}
// Cerrar la conexión
$conn->close();
?>