修改
This commit is contained in:
@@ -1399,7 +1399,7 @@ namespace IRaCIS.Application.Services
|
||||
{
|
||||
IsUrgent = x.IsUrgent ?? false,
|
||||
SubjectId = x.SubjectId,
|
||||
VisitNum = x.VisitNum,
|
||||
VisitNum = x.SubjectVisit.VisitNum,
|
||||
ReadingName = x.ModuleName,
|
||||
ReadModuleId = x.Id,
|
||||
ReadingCategory = typeChangeDic[x.ModuleType],
|
||||
|
||||
+2
-2
@@ -213,7 +213,7 @@ namespace IRaCIS.Application.Services
|
||||
// 先找到对应的全局阅片模块Id
|
||||
var globalreadModuleId = await _readModuleRepository.Where(x => x.SubjectVisitId == readModuleInfo.SubjectVisitId &&
|
||||
x.TrialReadingCriterionId== readModuleInfo.TrialReadingCriterionId&&
|
||||
x.ModuleType == ModuleTypeEnum.Global).Select(x => x.Id).FirstOrDefaultAsync();
|
||||
x.ModuleType == ModuleTypeEnum.Global).Include(x=>x.SubjectVisit).Select(x => x.Id).FirstOrDefaultAsync();
|
||||
|
||||
// 找到一个全局阅片任务是否有裁判任务
|
||||
|
||||
@@ -259,7 +259,7 @@ namespace IRaCIS.Application.Services
|
||||
IsUrgent = readModuleInfo.IsUrgent ?? false,
|
||||
SubjectId = readModuleInfo.SubjectId,
|
||||
ReadingName = readModuleInfo.ModuleName,
|
||||
VisitNum = readModuleInfo.VisitNum,
|
||||
VisitNum = readModuleInfo.SubjectVisit.VisitNum,
|
||||
ReadModuleId = readModuleInfo.Id,
|
||||
ReadingCategory = ReadingCategory.Oncology,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user