From 47d0f72f3013fd6a800d21123053239e1f916f0b Mon Sep 17 00:00:00 2001 From: kittapath Date: Thu, 23 Jan 2025 13:26:33 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=81=E0=B8=81=E0=B9=89=E0=B9=80=E0=B8=A5?= =?UTF-8?q?=E0=B8=82=20excel?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Services/PeriodExamService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Services/PeriodExamService.cs b/Services/PeriodExamService.cs index a3577e5..55e2688 100644 --- a/Services/PeriodExamService.cs +++ b/Services/PeriodExamService.cs @@ -1405,8 +1405,8 @@ namespace BMA.EHR.Recurit.Exam.Service.Services Pass = item.Pass != null ? item.Pass.ToString() : "-", PaymentStatus = item.PeriodExam == null || item.PeriodExam.Fee <= 0 ? "ไม่มีชำระเงิน" : (item.PaymentDate == null ? "ยังไม่ชำระเงิน" : "ชำระแล้ว"), - PaymentDate = item.PaymentDate == null ? "-" : $"{item.PaymentDate.Value.ToThaiShortDate()} {item.PaymentDate.Value:HH:mm:ss.ffff}".ToString().ToThaiNumber(), - RegisterDate = item.RegisterDate == null ? "-" : $"{item.RegisterDate.Value.ToThaiShortDate()} {item.RegisterDate.Value:HH:mm:ss.ffff}".ToString().ToThaiNumber(), + PaymentDate = item.PaymentDate == null ? "-" : $"{item.PaymentDate.Value.ToThaiShortDate()} {item.PaymentDate.Value:HH:mm:ss.ffff}".ToString(), + RegisterDate = item.RegisterDate == null ? "-" : $"{item.RegisterDate.Value.ToThaiShortDate()} {item.RegisterDate.Value:HH:mm:ss.ffff}".ToString(), ExamReason = item.ExamReason != null ? item.ExamReason.ToString() : "-" }); }