forked from nathalie/pedi2
Boton de agregar a la chismosa desabilitado para cantidades no validas
This commit is contained in:
parent
763fd3f646
commit
420387cdb7
|
@ -159,7 +159,7 @@ Vue.component('producto-container', {
|
|||
</section>
|
||||
<footer class="modal-card-foot">
|
||||
<!-- Habría que ver si cambiar el botón cuando al cantidad es 0 -->
|
||||
<button class="button is-success" @click="agregarProducto">Agregar a la chismosa</button>
|
||||
<button class="button is-success" :disabled="cant <= 0" @click="agregarProducto">Agregar a la chismosa</button>
|
||||
<button class="button" @click.capture="cerrar">Cancelar</button>
|
||||
</footer>
|
||||
</div>
|
||||
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue