Uat_Study
he 2022-10-28 09:50:34 +08:00
parent 5fdb3bd520
commit 4fc35893f9
2 changed files with 4 additions and 2 deletions

View File

@ -69,7 +69,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public string BlindName { get; set; } = string.Empty;
public Guid RowId { get; set; }
public string SplitOrMergeLesionName { get; set; }

View File

@ -196,6 +196,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
IsCanEditPosition = x.IsCanEditPosition,
RowIndex = x.RowIndex,
BlindName = x.BlindName,
RowId =x.Id,
ReportLayType = ReportLayType.Lesions,
FristAddTaskNum= x.FristAddTaskNum,
}).ToList();
@ -218,6 +219,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
RowIndex = row.RowIndex,
ShowOrder = x.ShowOrder,
ValueType = x.ValueType,
RowId=row.RowId,
Unit = x.Unit,
ReportLayType = ReportLayType.TableQuestion,
FristAddTaskNum= row.FristAddTaskNum,
@ -231,7 +233,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
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,
VisitTaskId = task.VisitTaskId,
});