2022-05-25 19:03:29 -03:00
|
|
|
<template>
|
|
|
|
<tr>
|
|
|
|
<td>{{ this.producto.nombre }}</td>
|
2024-09-15 12:48:34 -03:00
|
|
|
<td class="has-text-right">
|
2024-10-08 20:07:03 -03:00
|
|
|
<pedidos-producto-cantidad :producto="producto"></pedidos-producto-cantidad>
|
2024-09-15 12:48:34 -03:00
|
|
|
</td>
|
2023-09-09 13:32:49 -03:00
|
|
|
<td class="has-text-right">{{ Math.ceil(this.producto.pivot.total) }}</td>
|
2022-05-25 19:03:29 -03:00
|
|
|
</tr>
|
|
|
|
</template>
|
|
|
|
<script>
|
2024-09-15 18:09:23 -03:00
|
|
|
export default {
|
2022-05-25 19:03:29 -03:00
|
|
|
props: {
|
|
|
|
producto: Object
|
|
|
|
},
|
|
|
|
}
|
2022-06-08 20:32:50 -03:00
|
|
|
</script>
|