masiso
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 1m4s

This commit is contained in:
2025-11-21 23:03:31 -06:00
parent acafcd1390
commit 039bf47d21
7 changed files with 6 additions and 6 deletions

View File

@@ -85,7 +85,7 @@
<template #lotes>
<div class="py-4">
<h3>Contenido del Tab Lotes</h3>
<LotesLotesTable
<LotesTable
@create="showCreateLoteModal = true"
@view="handleViewLote"
@edit="handleEditLote"
@@ -98,7 +98,7 @@
<template #operaciones>
<div class="py-4">
<h3>Contenido del Tab Operaciones</h3>
<OperacionesOperacionesTable
<OperacionesTable
@create="showCreateOperacionModal = true"
@view="handleViewOperacion"
/>
@@ -123,7 +123,7 @@
<!-- Modal: Crear/Editar Lote -->
<UModal v-model:open="showLoteFormModal">
<template #content>
<LotesLoteForm
<LotesForm
:lote="selectedLote"
@cancel="closeLoteFormModal"
@success="handleLoteFormSuccess"
@@ -134,7 +134,7 @@
<!-- Modal: Ver Detalle de Lote -->
<UModal v-model:open="showLoteDetailModal">
<template #content>
<LotesLoteCard
<LotesCard
v-if="selectedLote"
:lote="selectedLote"
@edit="handleEditLoteFromDetail"
@@ -149,7 +149,7 @@
:ui="{ content: 'w-[calc(100vw-2rem)] max-w-4xl rounded-lg shadow-lg ring ring-default' }"
>
<template #content>
<LotesTrazabilidadTree
<LotesTrazabilidad
v-if="trazabilidadLoteId"
:lote-id="trazabilidadLoteId"
@close="showTrazabilidadModal = false"
@@ -163,7 +163,7 @@
:ui="{ content: 'w-[calc(100vw-2rem)] max-w-3xl rounded-lg shadow-lg ring ring-default' }"
>
<template #content>
<OperacionesOperacionForm
<OperacionesForm
@cancel="showCreateOperacionModal = false"
@success="handleOperacionFormSuccess"
/>