Compare commits

..

No commits in common. "0405ba4b1381b8c17ce397b19ac9854c19d9bb50" and "b832a66abf8d8af2fb8b35fb2fdfb343a9f310c3" have entirely different histories.

1 changed files with 1 additions and 1 deletions

View File

@ -2968,7 +2968,7 @@ namespace IRaCIS.Application.Services
task.SubjectCode = await _subjectRepository.Where(x => x.Id == task.SubjectId).Select(x => x.Code).FirstNotNullAsync(); task.SubjectCode = await _subjectRepository.Where(x => x.Id == task.SubjectId).Select(x => x.Code).FirstNotNullAsync();
} }
await _visitTaskRepository.BatchUpdateNoTrackingAsync(x => x.Id == task.VisitTaskId&&x.TaskState==TaskState.Effect&&x.ReadingTaskState!=ReadingTaskState.HaveSigned && x.FirstReadingTime == null, x => new VisitTask() await _visitTaskRepository.BatchUpdateNoTrackingAsync(x => x.Id == task.VisitTaskId && x.FirstReadingTime == null, x => new VisitTask()
{ {
FirstReadingTime = DateTime.Now, FirstReadingTime = DateTime.Now,
}); });