diff --git a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml index 7b41c457..c1245cab 100644 --- a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml +++ b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml @@ -2530,6 +2530,11 @@ 任务Id + + + Base64编码 + + 任务Id diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs index 2e1d41f4..3e77c18b 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs @@ -1111,7 +1111,7 @@ namespace IRaCIS.Application.Services } - ReadingTableAnswerRowInfo rowInfo = await _readingTableAnswerRowInfoRepository.Where(x => x.Id == (inDto.RowId ?? default(Guid))).AsNoTracking().FirstOrDefaultAsync(); + ReadingTableAnswerRowInfo rowInfo = await _readingTableAnswerRowInfoRepository.Where(x => x.Id == (inDto.RowId ?? default(Guid))).FirstOrDefaultAsync(); rowInfo = rowInfo == null ? new ReadingTableAnswerRowInfo() : rowInfo; @@ -1167,6 +1167,8 @@ namespace IRaCIS.Application.Services IsDicomReading = rowInfo.IsDicomReading, IsCurrentTaskAdd = isCurrentTaskAdd, FristAddTaskNum = rowInfo.FristAddTaskNum, + PictureBaseStr=rowInfo.PictureBaseStr, + NumberOfFrames=rowInfo.NumberOfFrames, RowIndex = rowInfo.RowIndex, InstanceId = rowInfo.InstanceId, SeriesId = rowInfo.SeriesId,