diff --git a/resources/js/components/NavBar.vue b/resources/js/components/NavBar.vue
index 7c266b1..efe574a 100644
--- a/resources/js/components/NavBar.vue
+++ b/resources/js/components/NavBar.vue
@@ -11,7 +11,7 @@
-
+
@@ -28,7 +28,7 @@
-
+
Cerrar sesión
diff --git a/resources/js/components/ProductoModal.vue b/resources/js/components/ProductoModal.vue
index de9db3e..d919e53 100644
--- a/resources/js/components/ProductoModal.vue
+++ b/resources/js/components/ProductoModal.vue
@@ -26,7 +26,7 @@
@@ -62,7 +62,7 @@
return {
producto: null,
visible: false,
- cant: 0
+ cantidad: 0
}
},
computed: {
@@ -75,15 +75,15 @@
},
methods: {
cerrar() {
- this.cant = 0;
+ this.cantidad = 0;
this.visible = false;
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.cantidad < 0) alert("No se puede agregar cantidades negativas")
+ else if (!Number.isInteger(this.cantidad)) alert("Las cantidades deben ser números enteros")
else {
- Event.$emit('sync-subpedido',this.cant, this.producto.id);
+ Event.$emit('sync-subpedido',this.cantidad, this.producto.id);
this.cerrar();
}
}
@@ -91,6 +91,8 @@
mounted() {
Event.$on('producto-seleccionado', (producto) => {
this.producto = producto;
+ this.cantidad = this.$root.pedido.productos.includes(producto) ?
+ producto.pivot.cantidad : 0
this.visible = true;
Event.$emit("migas-agregar",this.miga);
});