diff --git a/public/js/productos.js b/public/js/productos.js index 86160dd..cb5bc4c 100644 --- a/public/js/productos.js +++ b/public/js/productos.js @@ -159,7 +159,7 @@ Vue.component('producto-container', { @@ -186,8 +186,11 @@ Vue.component('producto-container', { Event.$emit("migas-pop"); }, agregarProducto() { - Event.$emit("sync-subpedido", this.cant, this.producto.id); - this.cerrar(); + if (this.cant < 0) alert("No se puede agregar cantidades negativas") + else { + Event.$emit("sync-subpedido", this.cant, this.producto.id); + this.cerrar(); + } } }, mounted() {