IRC_NewDev
parent
6e1c6fbc49
commit
9f08024514
|
@ -851,19 +851,8 @@ namespace IRaCIS.Application.Services
|
|||
x.OrderMarkName = x.OrderMark + x.RowIndexNum.GetLesionMark();
|
||||
});
|
||||
|
||||
var questionMark = await _readingTaskQuestionMarkRepository.Where(x => x.VisitTaskId == inDto.VisitTaskId).
|
||||
Select(x => new GetTableAnswerRowInfoOutDto()
|
||||
{
|
||||
FristAddTaskId = x.FirstAddTaskId.Value,
|
||||
Id = x.Id,
|
||||
InstanceId = x.InstanceId,
|
||||
MeasureData = x.MeasureData,
|
||||
NumberOfFrames = x.NumberOfFrames,
|
||||
PicturePath = x.PicturePath,
|
||||
VisitTaskId = x.VisitTaskId,
|
||||
StudyId = x.StudyId,
|
||||
SeriesId = x.StudyId,
|
||||
}).ToListAsync();
|
||||
var questionMark = await _readingTaskQuestionMarkRepository.Where(x => x.VisitTaskId == inDto.VisitTaskId).ProjectTo<GetTableAnswerRowInfoOutDto>(_mapper.ConfigurationProvider).ToListAsync();
|
||||
|
||||
|
||||
questionMark.ForEach(x => {
|
||||
|
||||
|
|
|
@ -94,6 +94,7 @@ namespace IRaCIS.Core.Application.Service
|
|||
.ForMember(d => d.Value, u => u.MapFrom(s => s.Dictionary.Value))
|
||||
.ForMember(d => d.ValueCN, u => u.MapFrom(s => s.Dictionary.ValueCN));
|
||||
|
||||
CreateMap<ReadingTaskQuestionMark, GetTableAnswerRowInfoOutDto>();
|
||||
CreateMap<ReadingTaskQuestionMark, QuestionMarkInfo>();
|
||||
CreateMap<QuestionMarkInfo, ReadingTaskQuestionMark>();
|
||||
//CreateMap<ReadingClinicalDataView, GetReadingClinicalDataListOutDto>();
|
||||
|
|
Loading…
Reference in New Issue