Borrado boton inutil de chismosa

This commit is contained in:
Alejandro Tasistro 2024-09-14 11:06:09 -03:00
parent b79548624f
commit 9d9ebd75b5
2 changed files with 0 additions and 10 deletions

View File

@ -6,7 +6,6 @@
<th>Producto</th> <th>Producto</th>
<th><abbr title="Cantidad">C</abbr></th> <th><abbr title="Cantidad">C</abbr></th>
<th><abbr title="Precio Total">$</abbr></th> <th><abbr title="Precio Total">$</abbr></th>
<th></th>
<th><abbr title="Eliminar"></abbr></th> <th><abbr title="Eliminar"></abbr></th>
</tr> </tr>
</thead> </thead>
@ -16,7 +15,6 @@
<th class="has-text-right">{{ cantidadBonosDeTransporte }}</th> <th class="has-text-right">{{ cantidadBonosDeTransporte }}</th>
<th class="has-text-right">{{ totalBonosDeTransporte }}</th> <th class="has-text-right">{{ totalBonosDeTransporte }}</th>
<th></th> <th></th>
<th></th>
</tr> </tr>
<tr v-if="this.$root.devoluciones"> <tr v-if="this.$root.devoluciones">
<th><p>Devoluciones</p></th> <th><p>Devoluciones</p></th>
@ -29,14 +27,12 @@
</span> </span>
</button> </button>
</th> </th>
<th></th>
</tr> </tr>
<tr> <tr>
<th>Total total</th> <th>Total total</th>
<th></th> <th></th>
<th class="has-text-right">{{ total }}</th> <th class="has-text-right">{{ total }}</th>
<th></th> <th></th>
<th></th>
</tr> </tr>
</tfoot> </tfoot>
<tbody> <tbody>

View File

@ -3,11 +3,6 @@
<td>{{ this.producto.nombre }}</td> <td>{{ this.producto.nombre }}</td>
<td class="has-text-right">{{ this.producto.pivot.cantidad }}</td> <td class="has-text-right">{{ this.producto.pivot.cantidad }}</td>
<td class="has-text-right">{{ Math.ceil(this.producto.pivot.total) }}</td> <td class="has-text-right">{{ Math.ceil(this.producto.pivot.total) }}</td>
<td><button @click.capture="seleccionarProducto(producto)" class="button is-warning">
<span class="icon">
<i class="fas fa-edit"></i>
</span>
</button></td>
<td><button @click.capture="eliminarProducto()" class="button is-danger"> <td><button @click.capture="eliminarProducto()" class="button is-danger">
<span class="icon"> <span class="icon">
<i class="fas fa-trash-alt"></i> <i class="fas fa-trash-alt"></i>
@ -15,7 +10,6 @@
</button></td> </button></td>
</tr> </tr>
</template> </template>
producto
<script> <script>
export default { export default {
props: { props: {