diff --git a/src/cuestionario/cuestionario.service.ts b/src/cuestionario/cuestionario.service.ts index 88d6e15..cb143c9 100644 --- a/src/cuestionario/cuestionario.service.ts +++ b/src/cuestionario/cuestionario.service.ts @@ -143,7 +143,9 @@ export class CuestionarioService { } if (plantilla && PLANTILLA_MAP[plantilla]) { const fecha_inicio = new Date(qRow.getCell(4).value as string); + console.log("Fecha de inicio: ", fecha_inicio); const fecha_fin = new Date(qRow.getCell(5).value as string); + console.log("Fecha de inicio: ", fecha_fin); const id_tipo_evento= Number(qRow.getCell(8).value); const plantillaId = PLANTILLA_MAP[plantilla]; const base = PLANTILLAS.find(p => p.id === plantillaId);