From 420387cdb7807451c177dd454de63fc30e810215 Mon Sep 17 00:00:00 2001 From: Ale Date: Thu, 31 Mar 2022 14:43:15 -0300 Subject: [PATCH] Boton de agregar a la chismosa desabilitado para cantidades no validas --- public/js/productos.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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() {