-
Notifications
You must be signed in to change notification settings - Fork 5
/
modificaciones.html
211 lines (179 loc) · 9.46 KB
/
modificaciones.html
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modificar Producto</title>
<link rel="stylesheet" href="./static/css/estilos.css">
</head>
<body>
<div class="logo-centrado">
<img src="./static/imagenes/logo_Codo.jpg" alt="logo">
</div>
<h1>Modificar Productos del Inventario</h1><br>
<!-- Contenedor principal que será controlado por JavaScript. Este contenedor tendrá dos formularios. -->
<div id="app">
<!-- Primer formulario: Selector de producto. LLama a la función obtenerProducto cuando se envíe el formulario -->
<form id="form-obtener-producto">
<label for="codigo">Código:</label>
<input type="text" id="codigo" required><br>
<button type="submit">Modificar Producto</button> <a href="index.html">Menu principal</a>
</form>
<!-- Segundo formulario: se muestra solo si mostrarDatosProducto es verdadero. Llama a la función guardarCambios -->
<div id="datos-producto" style="display: none;">
<h2>Datos del Producto</h2>
<form id="form-guardar-cambios">
<label for="descripcionModificar">Descripción:</label>
<input type="text" id="descripcionModificar" required><br>
<label for="cantidadModificar">Cantidad:</label>
<input type="number" id="cantidadModificar" required><br>
<label for="precioModificar">Precio:</label>
<input type="number" step="0.01" id="precioModificar" required><br>
<!-- Imagen actual del producto - Debe comentarse al subirse al servidor-->
<img id="imagen-actual" style="max-width: 200px; display: none;">
<!-- Vista previa de la nueva imagen seleccionada -->
<img id="imagen-vista-previa" style="max-width: 200px; display: none;">
<!-- Input para nueva imagen -->
<label for="nuevaImagen">Nueva Imagen:</label>
<input type="file" id="nuevaImagen"><br>
<br>
<label for="proveModificar">Proveedor:</label>
<input type="number" id="proveModificar" required><br>
<button type="submit">Guardar Cambios</button>
<a href="modificaciones.html">Cancelar</a>
</form>
</div>
</div>
<script>
//const URL = "http://127.0.0.1:5000/" // Al subir al servidor, deberá utilizarse la siguiente ruta. USUARIO debe ser reemplazado por el nombre de usuario de Pythonanywhere
const URL = "https://maxisimonazzi.pythonanywhere.com/"
// Al subir al servidor, deberá utilizarse la siguiente ruta. USUARIO debe ser reemplazado por el nombre de usuario de Pythonanywhere
//const URL = "https://USUARIO.pythonanywhere.com/"
// Variables de estado para controlar la visibilidad y los datos del formulario
let codigo = '';
let descripcion = '';
let cantidad = '';
let precio = '';
let proveedor = '';
let imagen_url = '';
let imagenSeleccionada = null;
let imagenUrlTemp = null;
let mostrarDatosProducto = false;
document.getElementById('form-obtener-producto').addEventListener('submit', obtenerProducto);
document.getElementById('form-guardar-cambios').addEventListener('submit', guardarCambios);
document.getElementById('nuevaImagen').addEventListener('change', seleccionarImagen);
// Se ejecuta cuando se envía el formulario de consulta. Realiza una solicitud GET a la API y obtiene los datos del producto correspondiente al código ingresado.
function obtenerProducto(event) {
event.preventDefault();
codigo = document.getElementById('codigo').value;
fetch(URL + 'productos/' + codigo)
.then(response => {
if (response.ok) {
return response.json()
} else {
throw new Error('Error al obtener los datos del producto.')
}
})
.then(data => {
descripcion = data.descripcion;
cantidad = data.cantidad;
precio = data.precio;
proveedor = data.proveedor;
imagen_url = data.imagen_url;
mostrarDatosProducto = true; //Activa la vista del segundo formulario
mostrarFormulario();
})
.catch(error => {
alert('Código no encontrado.');
});
}
// Muestra el formulario con los datos del producto
function mostrarFormulario() {
if (mostrarDatosProducto) {
document.getElementById('descripcionModificar').value = descripcion;
document.getElementById('cantidadModificar').value = cantidad;
document.getElementById('precioModificar').value = precio;
document.getElementById('proveModificar').value = proveedor;
const imagenActual = document.getElementById('imagen-actual');
if (imagen_url && !imagenSeleccionada) { // Verifica si imagen_url no está vacía y no se ha seleccionado una imagen
//imagenActual.src = './static/imagenes/' + imagen_url;
//Al subir al servidor, deberá utilizarse la siguiente ruta. USUARIO debe ser reemplazado por el nombre de usuario de Pythonanywhere
imagenActual.src = 'https://maxisimonazzi.pythonanywhere.com/static/imagenes/' + imagen_url;
imagenActual.style.display = 'block'; // Muestra la imagen actual
} else {
imagenActual.style.display = 'none'; // Oculta la imagen si no hay URL
}
document.getElementById('datos-producto').style.display = 'block';
} else {
document.getElementById('datos-producto').style.display = 'none';
}
}
// Se activa cuando el usuario selecciona una imagen para cargar.
function seleccionarImagen(event) {
const file = event.target.files[0];
imagenSeleccionada = file;
imagenUrlTemp = URL.createObjectURL(file); // Crea una URL temporal para la vista previa
const imagenVistaPrevia = document.getElementById('imagen-vista-previa');
imagenVistaPrevia.src = imagenUrlTemp;
imagenVistaPrevia.style.display = 'block';
}
// Se usa para enviar los datos modificados del producto al servidor.
function guardarCambios(event) {
event.preventDefault();
const formData = new FormData();
formData.append('codigo', codigo);
formData.append('descripcion', document.getElementById('descripcionModificar').value);
formData.append('cantidad', document.getElementById('cantidadModificar').value);
formData.append('proveedor', document.getElementById('proveModificar').value);
formData.append('precio', document.getElementById('precioModificar').value);
// Si se ha seleccionado una imagen nueva, la añade al formData.
if (imagenSeleccionada) {
formData.append('imagen', imagenSeleccionada, imagenSeleccionada.name);
}
fetch(URL + 'productos/' + codigo, {
method: 'PUT',
body: formData,
})
.then(response => {
if (response.ok) {
return response.json()
} else {
throw new Error('Error al guardar los cambios del producto.')
}
})
.then(data => {
alert('Producto actualizado correctamente.');
limpiarFormulario();
})
.catch(error => {
console.error('Error:', error);
alert('Error al actualizar el producto.');
});
}
// Restablece todas las variables relacionadas con el formulario a sus valores iniciales, lo que efectivamente "limpia" el formulario.
function limpiarFormulario() {
document.getElementById('codigo').value = '';
document.getElementById('descripcionModificar').value = '';
document.getElementById('cantidadModificar').value = '';
document.getElementById('precioModificar').value = '';
document.getElementById('proveModificar').value = '';
document.getElementById('nuevaImagen').value = '';
const imagenActual = document.getElementById('imagen-actual');
imagenActual.style.display = 'none';
const imagenVistaPrevia = document.getElementById('imagen-vista-previa');
imagenVistaPrevia.style.display = 'none';
codigo = '';
descripcion = '';
cantidad = '';
precio = '';
proveedor = '';
imagen_url = '';
imagenSeleccionada = null;
imagenUrlTemp = null;
mostrarDatosProducto = false;
document.getElementById('datos-producto').style.display = 'none';
}
</script>
</body>
</html>