From fabdcc49b9649bcdbab0a9fb949ee40cc048d261 Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Tue, 13 Dec 2022 10:40:43 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Doctor/DoctorListQueryService.cs | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/IRaCIS.Core.Application/Doctor/DoctorListQueryService.cs b/IRaCIS.Core.Application/Doctor/DoctorListQueryService.cs index 3b1cb15..be8735d 100644 --- a/IRaCIS.Core.Application/Doctor/DoctorListQueryService.cs +++ b/IRaCIS.Core.Application/Doctor/DoctorListQueryService.cs @@ -226,8 +226,15 @@ namespace IRaCIS.Application.Services public PageOutput GetSelectionReviewerList( ReviewerSelectionQueryDTO selectionQueryParam) { - var trial = _trialRepository.FindSingleOrDefault(s=>s.Id== selectionQueryParam.TrialId); - selectionQueryParam.Nation = trial.AttendedReviewerType; + var trial = _trialRepository.FindSingleOrDefault(s => s.Id == selectionQueryParam.TrialId); + + // 如果是CN&Abroad 为2 就不筛选 + + if (trial.AttendedReviewerType != 2) + { + selectionQueryParam.Nation = trial.AttendedReviewerType; + } + var dic = GetDictionary(); //医生条件搜索Lambda拼接 Expression> doctorLambda = GetDoctorSearchLambda(selectionQueryParam); ;