Fix [Bug] สรรหาคัดเลือกส่งมาที่ระบบบรรจุ รายการสอบมาแต่คนไม่มา #1380
This commit is contained in:
parent
59faf42af1
commit
2d694c79fc
1 changed files with 1 additions and 1 deletions
|
|
@ -2828,7 +2828,7 @@ namespace BMA.EHR.Recurit.Exam.Service.Services
|
|||
LastUpdateFullName = FullName ?? "",
|
||||
};
|
||||
await _contextMetadata.Placements.AddAsync(placement);
|
||||
foreach (var candidate in periodExam.Candidate.Where(x => x.Status == "done" && x.Pass == "ได้"))
|
||||
foreach (var candidate in periodExam.Candidate.Where(x => x.Status.Trim().ToUpper() == "DONE" && x.Pass?.Trim() == "ได้"))
|
||||
{
|
||||
var IsOfficer = false;
|
||||
dynamic org = null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue