แก้ text ในใบสมัคร
This commit is contained in:
parent
d56dd0a25f
commit
1e278f7e59
2 changed files with 11 additions and 7 deletions
|
|
@ -1000,7 +1000,7 @@ namespace BMA.EHR.Recurit.Exam.Service.Services
|
|||
{
|
||||
candidate.SeatNumber = item.SeatNumber;
|
||||
var subject = "แจ้งผลการสมัครสอบคัดเลือก " + periodExam.Name;
|
||||
var body = candidate.FirstName + " " + candidate.LastName + " สถานะการสมัครสอบ: รอเจ้าหน้าที่สรุปคะแนนสอบ";
|
||||
var body = candidate.FirstName + " " + candidate.LastName + " สถานะการสมัครสอบ: ติดตามประกาศทาง Website";
|
||||
if (candidate.Email != null && candidate.Email != "") _mailService.SendMailToUser(subject, body, candidate.Email);
|
||||
candidate.Status = "checkPoint";
|
||||
}
|
||||
|
|
@ -1122,7 +1122,9 @@ namespace BMA.EHR.Recurit.Exam.Service.Services
|
|||
candidates = await _context.Candidates
|
||||
.AsQueryable()
|
||||
.Include(x => x.PositionExam)
|
||||
.OrderBy(x => x.ExamIdenNumber)
|
||||
.OrderBy(x => x.PositionExam == null ? null : x.PositionExam.PositionName)
|
||||
.ThenBy(x => x.PositionExam == null ? null : x.PositionExam.PositionLevelName)
|
||||
.ThenBy(x => x.ExamIdenNumber)
|
||||
.Where(x => x.PeriodExam == periodExam)
|
||||
.Where(x => x.Status != "waiver")
|
||||
.Where(x => x.Status != "register")
|
||||
|
|
@ -1133,7 +1135,9 @@ namespace BMA.EHR.Recurit.Exam.Service.Services
|
|||
candidates = await _context.Candidates
|
||||
.AsQueryable()
|
||||
.Include(x => x.PositionExam)
|
||||
.OrderBy(x => x.ExamIdenNumber)
|
||||
.OrderBy(x => x.PositionExam == null ? null : x.PositionExam.PositionName)
|
||||
.ThenBy(x => x.PositionExam == null ? null : x.PositionExam.PositionLevelName)
|
||||
.ThenBy(x => x.ExamIdenNumber)
|
||||
.Where(x => x.PeriodExam == periodExam)
|
||||
.Where(x => x.Status != "register")
|
||||
.ToListAsync();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue