From b69f7e302760d6bbcc7d0ae4754e8d2464ef9392 Mon Sep 17 00:00:00 2001 From: Bright Date: Wed, 25 Jun 2025 13:40:49 +0700 Subject: [PATCH] =?UTF-8?q?Fix=20[Bug]=20=E0=B9=82=E0=B8=AB=E0=B8=A5?= =?UTF-8?q?=E0=B8=94=E0=B9=84=E0=B8=9F=E0=B8=A5=E0=B9=8C=E0=B8=AA=E0=B8=A3?= =?UTF-8?q?=E0=B8=A3=E0=B8=AB=E0=B8=B2=20=E0=B8=AA=E0=B8=AD=E0=B8=9A?= =?UTF-8?q?=E0=B8=84=E0=B8=B1=E0=B8=94=E0=B9=80=E0=B8=A5=E0=B8=B7=E0=B8=AD?= =?UTF-8?q?=E0=B8=81=20=E0=B8=94=E0=B8=B2=E0=B8=A7=E0=B8=99=E0=B9=8C?= =?UTF-8?q?=E0=B9=82=E0=B8=AB=E0=B8=A5=E0=B8=94=E0=B8=A3=E0=B8=B2=E0=B8=A2?= =?UTF-8?q?=E0=B8=8A=E0=B8=B7=E0=B9=88=E0=B8=AD=E0=B8=9C=E0=B8=B9=E0=B9=89?= =?UTF-8?q?=E0=B8=AA=E0=B8=AD=E0=B8=9A=E0=B8=84=E0=B8=B1=E0=B8=94=E0=B9=80?= =?UTF-8?q?=E0=B8=A5=E0=B8=B7=E0=B8=AD=E0=B8=81=E0=B9=84=E0=B8=94=E0=B9=89?= =?UTF-8?q?=E0=B9=81=E0=B8=A5=E0=B9=89=E0=B8=A7=20error=20#1379?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Controllers/ExamReportController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Controllers/ExamReportController.cs b/Controllers/ExamReportController.cs index 83cbb56..4803a17 100644 --- a/Controllers/ExamReportController.cs +++ b/Controllers/ExamReportController.cs @@ -567,7 +567,7 @@ namespace BMA.EHR.Report.Service.Controllers ExamIdenNumber = p.ExamIdenNumber }) .OrderBy(x => x.ExamIdenNumber) - .Where(x => x.ExamResult == "ได้") + .Where(x => x.ExamResult?.Trim() == "ได้") .ToList(); if (data.Count == 0)