稽查修改
parent
d76f600e03
commit
05bd1bd9b8
|
@ -2396,6 +2396,12 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
|||
|
||||
var entity = item.Entity as ReadingClinicalDataPDF;
|
||||
|
||||
string extraIndentification=string.Empty;
|
||||
if (_userInfo.UserTypeEnumInt == (int)UserTypeEnum.ProjectManager)
|
||||
{
|
||||
extraIndentification= "/PM";
|
||||
}
|
||||
|
||||
var clinicalData = await _dbContext.ReadingClinicalData.Where(t => t.Id == entity.ReadingClinicalDataId).FirstOrDefaultAsync();
|
||||
if (clinicalData != null)
|
||||
{
|
||||
|
@ -2426,6 +2432,7 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
|||
{
|
||||
TrialId = clinicalData.TrialId,
|
||||
SubjectId = clinicalData.SubjectId,
|
||||
ExtraIndentification = extraIndentification,
|
||||
SubjectVisitId = subjectVisitId,
|
||||
}, new
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue