Uat_Study
hang 2022-04-26 09:03:33 +08:00
parent f9f7fa8be4
commit 663b40bdce
2 changed files with 5 additions and 1 deletions

View File

@ -369,8 +369,10 @@ namespace IRaCIS.Application.Services
BlindName = x.BlindName,
IsBaseLine = x.IsBaseLine,
IsCheckBack = x.IsBaseLine,
IsUrgent = trial.IsSubjectExpeditedView,
};
subjectVisits.Add(subjectVisit);
//
@ -400,6 +402,7 @@ namespace IRaCIS.Application.Services
IsUrgent = trial.IsSubjectExpeditedView,
IsFinalVisit = subjectVisit.IsFinalVisit,
IsLostVisit = subjectVisit.IsLostVisit,
PDState = trial.IsPDProgressView,
}),
});

View File

@ -244,7 +244,7 @@ namespace IRaCIS.Core.Domain.Models
//PD 进展是否显示
//PD 进展是否显示 配置访视 是否显示 PD进展 (从而可以设置状态)
public bool IsPDProgressView { get; set; }
//研究方案号
@ -279,6 +279,7 @@ namespace IRaCIS.Core.Domain.Models
public bool IsSubjectSexView { get; set; } = false;
//配置Suject Edit页面 是否显示 加急
public bool IsSubjectExpeditedView { get; set; } = false;