pedi2/resources/js/components/Chismosa.vue

104 lines
3.7 KiB
Vue
Raw Normal View History

2022-05-25 19:03:29 -03:00
<template>
2024-09-10 22:07:16 -03:00
<div class="column is-one-third full-height">
<div class="fixed-right">
<table v-show="mostrar_tabla" class="table is-striped is-bordered tabla-chismosa">
<thead>
<tr>
<th>Producto</th>
<th><abbr title="Cantidad">C</abbr></th>
<th><abbr title="Precio Total">$</abbr></th>
<th></th>
<th><abbr title="Eliminar"></abbr></th>
</tr>
</thead>
<tfoot>
<tr>
<th><abbr title="Bonos de Transporte">B. Transporte</abbr></th>
<th class="has-text-right">{{ cantidadBonosDeTransporte() }}</th>
<th class="has-text-right">{{ totalBonosDeTransporte() }}</th>
<th></th>
<th></th>
</tr>
<tr v-if="this.$root.devoluciones">
<th><p>Devoluciones</p></th>
<td><p :title="notasDevoluciones()">...</p></td>
<th class="has-text-right">-{{ devoluciones() }}</th>
<th>
<button @click.capture="modificarDevoluciones()" class="button is-warning">
<span class="icon">
<i class="fas fa-edit"></i>
</span>
</button>
</th>
<th></th>
</tr>
<tr>
<th>Total total</th>
<th></th>
<th class="has-text-right">{{ total() }}</th>
<th></th>
<th></th>
</tr>
</tfoot>
<tbody>
<producto-row v-for="producto in productos()" :producto="producto" :key="producto.id"></producto-row>
</tbody>
</table>
<p class="has-text-centered" v-show="!mostrar_tabla">
Compa, todavía no agregaste nada a la chismosa.
</p>
</div>
2022-05-25 19:03:29 -03:00
</div>
</template>
<script>
export default {
data() {
return {
mostrar_tabla: false,
}
},
mounted() {
Event.$on('pedido-actualizado', this.pedidoActualizado);
Event.$on('toggle-chismosa', this.pedidoActualizado);
},
methods: {
pedidoActualizado: function() {
this.mostrar_tabla = this.$root.productos.length > 0;
},
total: function() {
return this.$limpiarInt(this.$root.devoluciones ? this.$root.pedido.total_menos_devoluciones : this.$root.pedido.total)
},
2023-05-27 20:08:55 -03:00
productos: function() {
return this.$root.productos
2023-05-27 20:08:55 -03:00
},
modificarDevoluciones: function() {
Event.$emit("modificar-devoluciones");
},
2023-05-27 20:08:55 -03:00
cantidadBonosDeTransporte: function() {
2023-09-09 13:32:49 -03:00
return this.$limpiarInt(this.$root.pedido.subtotal_bonos_de_transporte) / 15
2023-05-27 20:08:55 -03:00
},
totalBonosDeTransporte: function() {
2023-09-09 13:32:49 -03:00
return this.$limpiarInt(this.$root.pedido.subtotal_bonos_de_transporte)
2023-05-27 20:08:55 -03:00
},
devoluciones: function() {
return this.$root.pedido.devoluciones_total;
},
notasDevoluciones: function() {
return this.$root.pedido.devoluciones_notas;
},
},
2022-05-25 19:03:29 -03:00
}
2024-09-10 22:07:16 -03:00
</script>
<style>
.tabla-chismosa {
width: 100%;
}
.fixed-right {
position: fixed;
overflow-y: auto;
max-height: 88vh;
2024-09-15 11:53:14 -03:00
margin-right: 20px;
2024-09-10 22:07:16 -03:00
}
</style>