From 6f2de0241dbebed944f041e8ac9e630d83b5d41d Mon Sep 17 00:00:00 2001 From: Marvin Date: Fri, 16 Jun 2023 14:16:32 +0800 Subject: [PATCH] =?UTF-8?q?1.=E9=87=8D=E6=96=B0=E4=B8=8A=E4=BC=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AMESCoreStudio.Web/Controllers/RPTController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/AMESCoreStudio.Web/Controllers/RPTController.cs b/AMESCoreStudio.Web/Controllers/RPTController.cs index 22be3309..11bca281 100644 --- a/AMESCoreStudio.Web/Controllers/RPTController.cs +++ b/AMESCoreStudio.Web/Controllers/RPTController.cs @@ -68,6 +68,7 @@ namespace AMESCoreStudio.Web.Controllers var sDate = new DateTime(Data.Year, Data.Month, 1).ToString("yyyy/MM/dd"); var eDate = new DateTime(Data.Year, Data.Month, DateTime.DaysInMonth(Data.Year, Data.Month)).ToString("yyyy/MM/dd"); var model = await _rptApi.GetRPT001View(sDate, eDate); + return View(model); } }