From c1af6909c42e7808f3d2ef6086b2fb00f2ac0045 Mon Sep 17 00:00:00 2001 From: Rodrigo Date: Tue, 8 Oct 2024 20:33:20 -0300 Subject: [PATCH] No habilitar sync producto si cantidad es 0 --- resources/js/components/Producto/ProductoCantidad.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/resources/js/components/Producto/ProductoCantidad.vue b/resources/js/components/Producto/ProductoCantidad.vue index 8a4992b..7acd421 100644 --- a/resources/js/components/Producto/ProductoCantidad.vue +++ b/resources/js/components/Producto/ProductoCantidad.vue @@ -79,7 +79,9 @@ } }, hayCambios() { - return this.cantidad != this.cantidadEnChismosa() || this.notas != this.notasEnChismosa(); + if (this.cantidad != this.cantidadEnChismosa()) return true; + + return this.cantidad > 0 && this.notas != this.notasEnChismosa(); }, puedeBorrar() { return this.cantidadEnChismosa() > 0;