Quitado redondeo
This commit is contained in:
parent
8799446e57
commit
025b9239c3
1 changed files with 5 additions and 2 deletions
|
@ -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
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue