Uat_Study
parent
99dd1b6f3d
commit
9d289bede7
|
@ -1187,6 +1187,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public string QuestionName { get; set; }
|
public string QuestionName { get; set; }
|
||||||
|
|
||||||
|
public string QuestionEnName { get; set; } = string.Empty;
|
||||||
|
|
||||||
public string Answer { get; set; }
|
public string Answer { get; set; }
|
||||||
|
|
||||||
public bool IsGlobalAnswer { get; set; } = false;
|
public bool IsGlobalAnswer { get; set; } = false;
|
||||||
|
|
|
@ -237,6 +237,7 @@ namespace IRaCIS.Application.Services
|
||||||
|
|
||||||
QuestionId = y.ReadingQuestionTrialId,
|
QuestionId = y.ReadingQuestionTrialId,
|
||||||
QuestionName = y.ReadingQuestionTrial.QuestionName.LanguageName(y.ReadingQuestionTrial.QuestionEnName, _userInfo.IsEn_Us),
|
QuestionName = y.ReadingQuestionTrial.QuestionName.LanguageName(y.ReadingQuestionTrial.QuestionEnName, _userInfo.IsEn_Us),
|
||||||
|
QuestionEnName=y.ReadingQuestionTrial.QuestionEnName,
|
||||||
AnswerGroup = y.ReadingQuestionTrial.AnswerGroup,
|
AnswerGroup = y.ReadingQuestionTrial.AnswerGroup,
|
||||||
QuestionType = y.ReadingQuestionTrial.QuestionType,
|
QuestionType = y.ReadingQuestionTrial.QuestionType,
|
||||||
LimitEdit= y.ReadingQuestionTrial.LimitEdit,
|
LimitEdit= y.ReadingQuestionTrial.LimitEdit,
|
||||||
|
@ -314,7 +315,7 @@ namespace IRaCIS.Application.Services
|
||||||
VisitAnswer = lr.question.Answer,
|
VisitAnswer = lr.question.Answer,
|
||||||
IsHaveChange = lr.global.Any(x=>x.QuestionId!=null&&!x.Answer.IsNullOrEmpty()) ? true : false,
|
IsHaveChange = lr.global.Any(x=>x.QuestionId!=null&&!x.Answer.IsNullOrEmpty()) ? true : false,
|
||||||
QuestionId = lr.question.QuestionId,
|
QuestionId = lr.question.QuestionId,
|
||||||
QuestionName = lr.question.QuestionName,
|
QuestionName = lr.question.QuestionName.LanguageName(lr.question.QuestionEnName, _userInfo.IsEn_Us),
|
||||||
QuestionType = lr.question.QuestionType,
|
QuestionType = lr.question.QuestionType,
|
||||||
LimitEdit=lr.question.LimitEdit,
|
LimitEdit=lr.question.LimitEdit,
|
||||||
MaxAnswerLength=lr.question.MaxAnswerLength,
|
MaxAnswerLength=lr.question.MaxAnswerLength,
|
||||||
|
|
Loading…
Reference in New Issue