This commit is contained in:
Alejandro Tasistro 2025-05-26 18:00:01 -03:00
parent 2970982c77
commit 8eb385c67e

View file

@ -1,13 +1,13 @@
<template> <template>
<tr> <tr>
<td>{{ this.producto.nombre }}</td> <td>{{ this.producto.nombre }}</td>
<td class="has-text-right"> <td class="has-text-right">
<producto-cantidad <producto-cantidad
:producto_id="producto.id" :producto_id="producto.id"
:requiere_notas="producto.requiere_notas"> :requiere_notas="producto.requiere_notas">
</producto-cantidad> </producto-cantidad>
</td> </td>
<td class="has-text-right">{{ cantidad(producto.id) }}</td> <td class="has-text-right">{{ cantidad(producto.id) }}</td>
</tr> </tr>
</template> </template>
<script> <script>