no message
This commit is contained in:
parent
394edfd02f
commit
7d891378be
1 changed files with 3 additions and 1 deletions
|
|
@ -1422,7 +1422,9 @@ namespace BMA.EHR.Recurit.Exam.Service.Controllers
|
|||
imported.Scores.Add(r);
|
||||
row++;
|
||||
var recruit = await _context.Disables.AsQueryable()
|
||||
.FirstOrDefaultAsync(x => x.PeriodExam == rec_import && x.ExamId == r.ExamId);
|
||||
.Include(x => x.PeriodExam)
|
||||
.Where(x => x.PeriodExam == rec_import && x.ExamId == r.ExamId)
|
||||
.FirstOrDefaultAsync();
|
||||
if (recruit != null)
|
||||
{
|
||||
var apiUrl = $"{_configuration["API"]}/org/find/head/officer";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue