Compare commits
2 Commits
3e4026e899
...
316caa8482
Author | SHA1 | Date |
---|---|---|
|
316caa8482 | |
|
05bd1bd9b8 |
|
@ -2396,6 +2396,12 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
||||||
|
|
||||||
var entity = item.Entity as ReadingClinicalDataPDF;
|
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();
|
var clinicalData = await _dbContext.ReadingClinicalData.Where(t => t.Id == entity.ReadingClinicalDataId).FirstOrDefaultAsync();
|
||||||
if (clinicalData != null)
|
if (clinicalData != null)
|
||||||
{
|
{
|
||||||
|
@ -2426,6 +2432,7 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
||||||
{
|
{
|
||||||
TrialId = clinicalData.TrialId,
|
TrialId = clinicalData.TrialId,
|
||||||
SubjectId = clinicalData.SubjectId,
|
SubjectId = clinicalData.SubjectId,
|
||||||
|
ExtraIndentification = extraIndentification,
|
||||||
SubjectVisitId = subjectVisitId,
|
SubjectVisitId = subjectVisitId,
|
||||||
}, new
|
}, new
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue