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