2022-11-12 21:16:35 -03:00
|
|
|
<template>
|
|
|
|
<tr>
|
|
|
|
<td>{{ pedido.nombre }}</td>
|
2023-09-09 13:32:49 -03:00
|
|
|
<td class="has-text-right" >{{ this.$limpiarInt(pedido.total) }}</td>
|
2023-11-12 11:46:16 -03:00
|
|
|
<td class="has-text-right" ><abbr :title="pedido.devoluciones_notas">-{{ pedido.devoluciones_total }}</abbr></td>
|
2023-10-05 12:58:03 -03:00
|
|
|
<td class="has-text-right" >{{ pedido.total_menos_devoluciones }}</td>
|
2022-11-12 21:16:35 -03:00
|
|
|
<td>
|
|
|
|
<pedidos-admin-switch-aprobacion
|
|
|
|
:pedido="pedido">
|
|
|
|
</pedidos-admin-switch-aprobacion>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import PedidosAdminSwitchAprobacion from './PedidosAdminSwitchAprobacion.vue';
|
|
|
|
export default {
|
|
|
|
name: "PedidosAdminFilaPedido",
|
|
|
|
components: {
|
|
|
|
PedidosAdminSwitchAprobacion
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
pedido: Object
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
Event.$on('sync-aprobacion', (unPedido) => {
|
|
|
|
if (this.pedido.id === unPedido.id) {
|
|
|
|
this.pedido = unPedido
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|