Compare commits

...

2 Commits

Author SHA1 Message Date
he 316caa8482 Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing Details
2025-07-17 10:20:58 +08:00
he 05bd1bd9b8 稽查修改 2025-07-17 10:20:57 +08:00
1 changed files with 7 additions and 0 deletions

View File

@ -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
{