Debug: Agregar console.logs a componentes de tablas
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 1m4s

This commit is contained in:
2025-11-21 22:46:40 -06:00
parent c37dbc03f6
commit 0857573334
2 changed files with 14 additions and 2 deletions

View File

@@ -91,6 +91,8 @@
<script setup lang="ts">
import type { Lote } from '~/composables/useLotes'
console.log('🟢 LotesTable: Script ejecutado')
const emit = defineEmits<{
create: []
view: [lote: Lote]
@@ -99,6 +101,7 @@ const emit = defineEmits<{
}>()
const { fetchLotes, TIPOS_LOTE } = useLotes()
console.log('🟢 LotesTable: Composable cargado, TIPOS_LOTE:', TIPOS_LOTE?.length)
const lotes = ref<Lote[]>([])
const loading = ref(false)
@@ -159,7 +162,10 @@ const formatDate = (dateString: string) => {
// Cargar lotes al montar
onMounted(() => {
loadLotes()
console.log('🔵 LotesTable montado correctamente')
loadLotes().catch(error => {
console.error('❌ Error cargando lotes:', error)
})
})
// Recargar cuando cambia el filtro

View File

@@ -68,12 +68,15 @@
<script setup lang="ts">
import type { Operacion } from '~/composables/useLotes'
console.log('🟡 OperacionesTable: Script ejecutado')
const emit = defineEmits<{
create: []
view: [operacion: Operacion]
}>()
const { fetchOperaciones, TIPOS_OPERACION } = useLotes()
console.log('🟡 OperacionesTable: Composable cargado')
const operaciones = ref<Operacion[]>([])
const loading = ref(false)
@@ -135,7 +138,10 @@ const formatDate = (dateString: string) => {
}
onMounted(() => {
loadOperaciones()
console.log('🟡 OperacionesTable montado correctamente')
loadOperaciones().catch(error => {
console.error('❌ Error cargando operaciones:', error)
})
})
watch(filtroTipo, () => {