From 65d68a311684695f97116a922035f965c6a7c754 Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Tue, 15 Aug 2023 15:07:34 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/ReadingCalculate/SelfDefineCalculateService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IRaCIS.Core.Application/Service/ReadingCalculate/SelfDefineCalculateService.cs b/IRaCIS.Core.Application/Service/ReadingCalculate/SelfDefineCalculateService.cs index e0b34c9fa..2e26f574a 100644 --- a/IRaCIS.Core.Application/Service/ReadingCalculate/SelfDefineCalculateService.cs +++ b/IRaCIS.Core.Application/Service/ReadingCalculate/SelfDefineCalculateService.cs @@ -136,7 +136,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate List 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),