master
parent
48736c4c3d
commit
fabdcc49b9
|
@ -226,8 +226,15 @@ namespace IRaCIS.Application.Services
|
||||||
public PageOutput<SelectionReviewerDTO> GetSelectionReviewerList(
|
public PageOutput<SelectionReviewerDTO> GetSelectionReviewerList(
|
||||||
ReviewerSelectionQueryDTO selectionQueryParam)
|
ReviewerSelectionQueryDTO selectionQueryParam)
|
||||||
{
|
{
|
||||||
var trial = _trialRepository.FindSingleOrDefault(s=>s.Id== selectionQueryParam.TrialId);
|
var trial = _trialRepository.FindSingleOrDefault(s => s.Id == selectionQueryParam.TrialId);
|
||||||
|
|
||||||
|
// 如果是CN&Abroad 为2 就不筛选
|
||||||
|
|
||||||
|
if (trial.AttendedReviewerType != 2)
|
||||||
|
{
|
||||||
selectionQueryParam.Nation = trial.AttendedReviewerType;
|
selectionQueryParam.Nation = trial.AttendedReviewerType;
|
||||||
|
}
|
||||||
|
|
||||||
var dic = GetDictionary();
|
var dic = GetDictionary();
|
||||||
//医生条件搜索Lambda拼接
|
//医生条件搜索Lambda拼接
|
||||||
Expression<Func<Doctor, bool>> doctorLambda = GetDoctorSearchLambda(selectionQueryParam); ;
|
Expression<Func<Doctor, bool>> doctorLambda = GetDoctorSearchLambda(selectionQueryParam); ;
|
||||||
|
|
Loading…
Reference in New Issue