From 88c07629623a1409dfd29e7d0069cd8cb3f9ca65 Mon Sep 17 00:00:00 2001 From: dmolinari Date: Thu, 19 Jun 2025 10:53:50 -0300 Subject: [PATCH] Retry formato ISO para fechas. --- .../Controllers/Reportes/ReportesController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Backend/GestionIntegral.Api/Controllers/Reportes/ReportesController.cs b/Backend/GestionIntegral.Api/Controllers/Reportes/ReportesController.cs index af878c9..fadd032 100644 --- a/Backend/GestionIntegral.Api/Controllers/Reportes/ReportesController.cs +++ b/Backend/GestionIntegral.Api/Controllers/Reportes/ReportesController.cs @@ -958,8 +958,8 @@ namespace GestionIntegral.Api.Controllers var parameters = new List { - new ReportParameter("FechaDesde", fechaDesde.ToString("dd/MM/yyyy")), - new ReportParameter("FechaHasta", fechaHasta.ToString("dd/MM/yyyy")) + new ReportParameter("FechaDesde", fechaDesde.ToString("yyyy-MM-dd")), + new ReportParameter("FechaHasta", fechaHasta.ToString("yyyy-MM-dd")), }; report.SetParameters(parameters);