Arreglo y ajuste a devoluciones en chismosa

This commit is contained in:
Rodrigo 2024-09-16 09:25:37 -03:00
parent a998f76d44
commit 1586a1190a
2 changed files with 11 additions and 5 deletions

5
resources/js/app.js vendored
View File

@ -114,20 +114,21 @@ const app = new Vue({
this.$toast('Pedido actualizado exitosamente')
Event.$emit("pedido-actualizado");
});
});
});
// Actualizar monto y notas de devoluciones
Event.$on('sync-devoluciones', (total, notas) => {
if (this.pedido.aprobado) {
this.$toast('No se puede modificar un pedido ya aprobado', 2000);
return;
}
axios.post("api/subpedidos/" + this.pedido.id + "/sync_devoluciones", {
total: total,
notas: notas,
}).then((response) => {
this.pedido = response.data.data;
this.$toast('Pedido actualizado');
Event.$emit("pedido-actualizado");
});
});

View File

@ -5,7 +5,7 @@
<thead>
<tr>
<th>Producto</th>
<th><abbr title="Cantidad">C</abbr></th>
<th>Cantidad</th>
<th><abbr title="Precio Total">$</abbr></th>
</tr>
</thead>
@ -18,8 +18,8 @@
<tr v-if="this.$root.devoluciones">
<th><p>Devoluciones</p></th>
<td>
<p :title="notas_devoluciones">...</p>
<button @click.capture="modificarDevoluciones()" class="button is-warning">
<abbr :title="notas_devoluciones">{{ notas_devoluciones_abbr }}</abbr>
<button @click.capture="modificarDevoluciones()" class="button is-warning is-small">
<span class="icon">
<i class="fas fa-edit"></i>
</span>
@ -53,6 +53,7 @@
total_bonos_transporte: 0,
devoluciones: 0,
notas_devoluciones: "",
notas_devoluciones_abbr: "",
total: 0,
productos: [],
}
@ -68,6 +69,10 @@
this.total_bonos_transporte = this.totalBonosDeTransporte();
this.devoluciones = this.$root.pedido.devoluciones_total;
this.notas_devoluciones = this.$root.pedido.devoluciones_notas;
this.notas_devoluciones_abbr = this.notas_devoluciones.substring(0, 15);
if (this.notas_devoluciones.length > 15) {
this.notas_devoluciones_abbr += "...";
}
this.total = this.$limpiarInt(this.$root.devoluciones ? this.$root.pedido.total_menos_devoluciones : this.$root.pedido.total);
this.productos = this.$root.productos
},