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