2022-05-25 19:03:29 -03:00
|
|
|
<template>
|
|
|
|
<tr>
|
|
|
|
<td>{{ this.producto.nombre }}</td>
|
2023-09-09 13:32:49 -03:00
|
|
|
<td class="has-text-right">{{ this.producto.pivot.cantidad }}</td>
|
|
|
|
<td class="has-text-right">{{ Math.ceil(this.producto.pivot.total) }}</td>
|
2022-05-25 19:03:29 -03:00
|
|
|
<td><button @click.capture="seleccionarProducto(producto)" class="button is-warning">
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fas fa-edit"></i>
|
|
|
|
</span>
|
|
|
|
</button></td>
|
|
|
|
<td><button @click.capture="eliminarProducto(producto)" class="button is-danger">
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fas fa-trash-alt"></i>
|
|
|
|
</span>
|
|
|
|
</button></td>
|
|
|
|
</tr>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
producto: Object
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
seleccionarProducto(producto) {
|
|
|
|
Event.$emit("producto-seleccionado",producto);
|
|
|
|
},
|
|
|
|
eliminarProducto(producto) {
|
|
|
|
Event.$emit("sync-subpedido", 0, this.producto.id);
|
|
|
|
Event.$emit("sync-subpedido");
|
|
|
|
}
|
2022-06-08 20:32:50 -03:00
|
|
|
}
|
2022-05-25 19:03:29 -03:00
|
|
|
}
|
2022-06-08 20:32:50 -03:00
|
|
|
</script>
|