funcion/refactor-general #45

Merged
atasistro merged 240 commits from funcion/refactor-general into master 2025-06-19 21:10:19 -03:00
Showing only changes of commit 8eb385c67e - Show all commits

View file

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