2022-11-12 21:16:35 -03:00
|
|
|
<template>
|
|
|
|
<tr>
|
|
|
|
<td>{{ pedido.nombre }}</td>
|
2024-07-17 16:46:31 -03:00
|
|
|
<td v-if="$root.devoluciones" class="has-text-right" >{{ this.$limpiarInt(pedido.total) }}</td>
|
|
|
|
<td v-if="$root.devoluciones" class="has-text-right" ><abbr :title="pedido.devoluciones_notas">-{{ pedido.devoluciones_total }}</abbr></td>
|
|
|
|
<td class="has-text-right" >{{ $root.devoluciones ? pedido.total_menos_devoluciones : pedido.total }}</td>
|
2022-11-12 21:16:35 -03:00
|
|
|
<td>
|
|
|
|
<pedidos-admin-switch-aprobacion
|
|
|
|
:pedido="pedido">
|
|
|
|
</pedidos-admin-switch-aprobacion>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2024-08-30 01:33:47 -03:00
|
|
|
import SwitchAprobacion from "./SwitchAprobacion.vue";
|
2022-11-12 21:16:35 -03:00
|
|
|
export default {
|
|
|
|
components: {
|
2024-08-30 01:33:47 -03:00
|
|
|
SwitchAprobacion
|
2022-11-12 21:16:35 -03:00
|
|
|
},
|
|
|
|
props: {
|
|
|
|
pedido: Object
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
Event.$on('sync-aprobacion', (unPedido) => {
|
|
|
|
if (this.pedido.id === unPedido.id) {
|
|
|
|
this.pedido = unPedido
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|