From db3d531aa9422c4032ec0427cfe190884273c11b Mon Sep 17 00:00:00 2001 From: Suphonchai Phoonsawat Date: Fri, 5 Jun 2026 11:01:06 +0700 Subject: [PATCH] =?UTF-8?q?fix=20=E0=B8=99=E0=B8=B1=E0=B8=9A=E0=B8=81?= =?UTF-8?q?=E0=B8=B2=E0=B8=A3=E0=B8=A5=E0=B8=87=E0=B9=80=E0=B8=A7=E0=B8=A5?= =?UTF-8?q?=E0=B8=B2=E0=B8=99=E0=B8=AD=E0=B8=81=E0=B8=AA=E0=B8=96=E0=B8=B2?= =?UTF-8?q?=E0=B8=99=E0=B8=97=E0=B8=B5=E0=B9=88=20[=E0=B8=AD=E0=B8=B7?= =?UTF-8?q?=E0=B9=88=E0=B8=99=E0=B9=86]=20#2524?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BMA.EHR.Leave/Controllers/LeaveReportController.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/BMA.EHR.Leave/Controllers/LeaveReportController.cs b/BMA.EHR.Leave/Controllers/LeaveReportController.cs index 1a3793cb..1b76947c 100644 --- a/BMA.EHR.Leave/Controllers/LeaveReportController.cs +++ b/BMA.EHR.Leave/Controllers/LeaveReportController.cs @@ -2648,8 +2648,9 @@ namespace BMA.EHR.Leave.Service.Controllers outOfficeTotal += 1; else if (timeStamps.CheckInLocationName.Contains("ปฏิบัติงานในจุดบริการด่วนมหานคร")) oneStopSrvrTotal += 1; - else if (timeStamps.CheckInLocationName.Contains("อื่นๆ")) - otherTotal += 1; + else otherTotal += 1; + // else if (timeStamps.CheckInLocationName.Contains("อื่นๆ")) + // otherTotal += 1; } }