Test.EIImageViewer
parent
5fdb3bd520
commit
4fc35893f9
|
@ -69,7 +69,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public string BlindName { get; set; } = string.Empty;
|
public string BlindName { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
public Guid RowId { get; set; }
|
||||||
|
|
||||||
public string SplitOrMergeLesionName { get; set; }
|
public string SplitOrMergeLesionName { get; set; }
|
||||||
|
|
||||||
|
|
|
@ -196,6 +196,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
IsCanEditPosition = x.IsCanEditPosition,
|
IsCanEditPosition = x.IsCanEditPosition,
|
||||||
RowIndex = x.RowIndex,
|
RowIndex = x.RowIndex,
|
||||||
BlindName = x.BlindName,
|
BlindName = x.BlindName,
|
||||||
|
RowId =x.Id,
|
||||||
ReportLayType = ReportLayType.Lesions,
|
ReportLayType = ReportLayType.Lesions,
|
||||||
FristAddTaskNum= x.FristAddTaskNum,
|
FristAddTaskNum= x.FristAddTaskNum,
|
||||||
}).ToList();
|
}).ToList();
|
||||||
|
@ -218,6 +219,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
RowIndex = row.RowIndex,
|
RowIndex = row.RowIndex,
|
||||||
ShowOrder = x.ShowOrder,
|
ShowOrder = x.ShowOrder,
|
||||||
ValueType = x.ValueType,
|
ValueType = x.ValueType,
|
||||||
|
RowId=row.RowId,
|
||||||
Unit = x.Unit,
|
Unit = x.Unit,
|
||||||
ReportLayType = ReportLayType.TableQuestion,
|
ReportLayType = ReportLayType.TableQuestion,
|
||||||
FristAddTaskNum= row.FristAddTaskNum,
|
FristAddTaskNum= row.FristAddTaskNum,
|
||||||
|
@ -231,7 +233,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
|
|
||||||
tableQuestion.Answer.Add(new TaskQuestionAnswer()
|
tableQuestion.Answer.Add(new TaskQuestionAnswer()
|
||||||
{
|
{
|
||||||
Answer = tableAnswers.Where(x => x.VisitTaskId == task.VisitTaskId && x.QuestionId == tableQuestion.QuestionId && x.RowIndex == tableQuestion.RowIndex && x.TableQuestionId == tableQuestion.TableQuestionId).Select(x => x.Answer).FirstIsNullReturnEmpty(),
|
Answer = tableAnswers.Where(x => x.VisitTaskId == task.VisitTaskId && x.QuestionId == tableQuestion.QuestionId && x.RowId == tableQuestion.RowId && x.TableQuestionId == tableQuestion.TableQuestionId).Select(x => x.Answer).FirstIsNullReturnEmpty(),
|
||||||
TaskName = task.TaskName,
|
TaskName = task.TaskName,
|
||||||
VisitTaskId = task.VisitTaskId,
|
VisitTaskId = task.VisitTaskId,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue