Agregado toast que avisa si el pedido fue aprobado
This commit is contained in:
parent
bf3b888e71
commit
f50d4b975d
|
@ -69,6 +69,10 @@ const app = new Vue({
|
|||
})
|
||||
})
|
||||
Event.$on('sync-subpedido', (cantidad, id) => {
|
||||
if (this.pedido.aprobado) {
|
||||
this.$toast('No se puede modificar un pedido ya aprobado');
|
||||
return;
|
||||
}
|
||||
axios.post("/api/subpedidos/" + this.pedido.id + "/sync", {
|
||||
cantidad: cantidad,
|
||||
producto_id: id
|
||||
|
|
Loading…
Reference in New Issue