forked from nathalie/pedi2
Compare commits
1 Commits
master
...
lista-chis
Author | SHA1 | Date |
---|---|---|
Alejandro Tasistro | be26a48c14 |
|
@ -61,7 +61,7 @@ Vue.component('nav-bar', {
|
|||
}).then(() => {
|
||||
bulmaToast.toast({
|
||||
message: 'Pedido actualizado exitosamente',
|
||||
duration: 1000,
|
||||
duration: 1500,
|
||||
type: 'is-danger',
|
||||
position: 'bottom-center',
|
||||
animate: { in: 'fadeIn', out: 'fadeOut' }
|
||||
|
|
|
@ -187,8 +187,22 @@ Vue.component('producto-container', {
|
|||
Event.$emit("migas-pop");
|
||||
},
|
||||
agregarProducto() {
|
||||
if (this.cant < 0) alert("No se puede agregar cantidades negativas")
|
||||
else if (!Number.isInteger(this.cant)) alert("Las cantidades deben ser números enteros")
|
||||
if (this.cant < 0)
|
||||
bulmaToast.toast({
|
||||
message: 'Las cantidades deben ser números mayores a 0',
|
||||
duration: 1500,
|
||||
type: 'is-danger',
|
||||
position: 'bottom-center',
|
||||
animate: { in: 'fadeIn', out: 'fadeOut' }
|
||||
});
|
||||
else if (!Number.isInteger(this.cant))
|
||||
bulmaToast.toast({
|
||||
message: 'Las cantidades deben ser números enteros',
|
||||
duration: 1500,
|
||||
type: 'is-danger',
|
||||
position: 'bottom-center',
|
||||
animate: { in: 'fadeIn', out: 'fadeOut' }
|
||||
});
|
||||
else {
|
||||
Event.$emit("sync-subpedido", this.cant, this.producto.id);
|
||||
this.cerrar();
|
||||
|
|
Loading…
Reference in New Issue