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

Uat_IRC_Net8
he 2025-02-27 17:12:01 +08:00
commit 86ea3ebc32
3 changed files with 11 additions and 2 deletions

View File

@ -15,7 +15,6 @@ namespace IRaCIS.Core.Application.Contracts
public bool IsCriticalSequence { get; set; } = false;
public string StudyName { get; set; }
public List<NoneDicomStudyFileView> NoneDicomStudyFileList { get; set; } = new List<NoneDicomStudyFileView>();
@ -62,6 +61,8 @@ namespace IRaCIS.Core.Application.Contracts
public int Code { get; set; }
public string StudyName { get; set; }
public string VideoName { get; set; } = string.Empty;
public string VideoObjectName { get; set; } = string.Empty;

View File

@ -355,8 +355,13 @@ namespace IRaCIS.Core.Application.Contracts.DTO
public int? NotClosedChallengeCount { get; set; }
public List<StudyName> StudyNameList { get; set; }
public List<string> ImageFormatList { get; set; }
public bool IsShowStudyName { get; set; } = false;
}
public class QAStudyInfoDTO
{

View File

@ -592,7 +592,10 @@ namespace IRaCIS.Core.Application.Service
.ForMember(d => d.SubjectFirstGiveMedicineTime, u => u.MapFrom(s => s.Subject.FirstGiveMedicineTime))
.ForMember(d => d.SiteName, u => u.MapFrom(s => s.TrialSite.TrialSiteName))
.ForMember(d => d.TotalChallengeCount, u => u.MapFrom(s => s.QCChallengeList.Count()))
.ForMember(d => d.NotClosedChallengeCount, u => u.MapFrom(s => s.QCChallengeList.Count(c => c.IsClosed == false)));
.ForMember(d => d.NotClosedChallengeCount, u => u.MapFrom(s => s.QCChallengeList.Count(c => c.IsClosed == false)))
.ForMember(d => d.IsShowStudyName, u => u.MapFrom(s => s.Trial.IsShowStudyName))
.ForMember(d => d.StudyNameList, u => u.MapFrom(s => s.Trial.StudyNameList))
.ForMember(d => d.ImageFormatList, u => u.MapFrom(s => s.Trial.ImageFormatList));
CreateMap<Subject, QARelationInfo>(MemberList.None);