Skip to content

Commit

Permalink
Update main.js
Browse files Browse the repository at this point in the history
  • Loading branch information
gfCrova authored Nov 13, 2022
1 parent 4370c9d commit 7154f20
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,18 @@ form.addEventListener('submit', (e) => {
const fecha = document.getElementById('fecha').value;
const cantidad = document.getElementById('cantidad').value;

const product = new Producto(nombre, precio, fecha, cantidad); // Nueva Instancia de la clase producto
const interfaz = new Interfaz(); // Nueva Instancia de la clase Interfaz
const product = new Producto(nombre, precio, fecha, cantidad);
const interfaz = new Interfaz();

if (nombre === '' || precio === '' || fecha === '') {
return interfaz.mostrarMensaje('Por favor introducir datos en los campos obligatorios!', 'danger');
}

interfaz.agregarProducto(product); // A la Nueva Instancia de la clase Interfaz
interfaz.resetForm(); // Llamar al método resetForm();
interfaz.agregarProducto(product);
interfaz.resetForm();
interfaz.mostrarMensaje('Producto Agregado Satisfactoriamente', 'success');

e.preventDefault(); // Cancelar comportamiento por defecto
e.preventDefault();
});


Expand All @@ -94,4 +94,4 @@ const deleteProducts = document.getElementById('lista-productos');
deleteProducts.addEventListener('click', (e) => {
const interfazDelete = new Interfaz();
interfazDelete.eliminarProducto(e.target);
})
})

0 comments on commit 7154f20

Please sign in to comment.