代码修改

IRC_NewDev
he 2023-08-15 15:07:34 +08:00
parent 13d709c88d
commit 65d68a3116
1 changed files with 2 additions and 2 deletions

View File

@ -136,7 +136,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
List<ReadingReportDto> questions = questionList.Where(x => x.Type == ReadingQestionType.Group).OrderBy(x => x.ShowOrder).Select(x => new ReadingReportDto()
{
QuestionId = x.Id,
GroupName = x.GroupName,
GroupName = x.GroupName.LanguageName(x.GroupEnName, _userInfo.IsEn_Us),
IsShowInDicom = x.IsShowInDicom,
Type = x.Type,
GroupId=x.GroupId,
@ -163,7 +163,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
{
item.Childrens = questionList.Where(x => x.GroupId==item.QuestionId).OrderBy(x => x.ShowOrder).Select(x => new ReadingReportDto()
{
GroupName = x.GroupName,
GroupName = x.GroupName.LanguageName(x.GroupEnName, _userInfo.IsEn_Us),
QuestionId = x.Id,
IsShowInDicom = x.IsShowInDicom,
QuestionName = x.QuestionName.LanguageName(x.QuestionEnName, _userInfo.IsEn_Us),