order LastUpdatedAt

This commit is contained in:
Bright 2025-09-05 12:09:16 +07:00
parent 080bd844c6
commit 7444a1ad73
2 changed files with 5 additions and 1 deletions

View file

@ -626,6 +626,7 @@ namespace BMA.EHR.Recruit.Service.Controllers
.ThenInclude(x => x.Scores)
.OrderByDescending(x => x.Year)
.ThenByDescending(x => x.Order)
.ThenByDescending(x => x.LastUpdatedAt)
.Select(x => new
{
x.Id,
@ -1047,6 +1048,9 @@ namespace BMA.EHR.Recruit.Service.Controllers
CreatedAt = DateTime.Now,
CreatedUserId = UserId ?? "",
CreatedFullName = FullName ?? "System Administrator",
LastUpdatedAt = DateTime.Now,
LastUpdateUserId = UserId ?? "",
LastUpdateFullName = FullName ?? "System Administrator",
});
//await _context.RecruitImports.AddAsync(imported);

View file

@ -397,7 +397,7 @@ namespace BMA.EHR.Recruit.Service.Services
if (string.IsNullOrWhiteSpace(Date))
return DateTime.MinValue;
// กรณีอยู่ในรูปแบบ string double
// จะเข้าเฉพาะกรณีที่ string เป็นตัวเลข เช่น "35635", "44561.5"
if (double.TryParse(Date, out double oaDate))
{
try