Quitado redondeo

This commit is contained in:
Alejandro Tasistro 2025-05-16 15:03:51 -03:00
parent 8799446e57
commit 025b9239c3

View file

@ -2,13 +2,16 @@
<tr>
<td>{{ this.producto.nombre }}</td>
<td class="has-text-right">
<pedidos-producto-cantidad :producto="producto"></pedidos-producto-cantidad>
<producto-cantidad :producto="producto"></producto-cantidad>
</td>
<td class="has-text-right">{{ Math.ceil(this.producto.pivot.total) }}</td>
<td class="has-text-right">{{ this.producto.pivot.total }}</td>
</tr>
</template>
<script>
import ProductoCantidad from "./ProductoCantidad.vue";
export default {
components: { ProductoCantidad },
props: {
producto: Object
},