Compare commits
No commits in common. "766ce3123af7ef491554d8c899b3ae9f788b97a7" and "71a4b241fdd29d0a460169fa635f73106fe648c6" have entirely different histories.
766ce3123a
...
71a4b241fd
|
|
@ -1251,8 +1251,6 @@ namespace IRaCIS.Core.Application.Service.Common
|
|||
//Uploader = t.Uploader.UserName,
|
||||
//UploadTime = t.CreateTime
|
||||
|
||||
SubjectStatus=t.Subject.Status
|
||||
|
||||
});
|
||||
|
||||
var svExpression2 = QCCommon.GetNoneDicomStudySubjectVisitFilter(studyQuery.VisitPlanArray);
|
||||
|
|
@ -1285,7 +1283,7 @@ namespace IRaCIS.Core.Application.Service.Common
|
|||
|
||||
//Uploader = t.CreateUser.UserName,
|
||||
//UploadTime = t.CreateTime
|
||||
SubjectStatus = t.Subject.Status
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -318,8 +318,6 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
|
||||
//审核通过时间
|
||||
public DateTime? AuditTime => QCProcessEnum == TrialQCProcess.SingleAudit ? PreliminaryAuditTime : (QCProcessEnum == TrialQCProcess.DoubleAudit ? ReviewAuditTime : null);
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -737,8 +735,6 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
|
||||
public class UnionStudyExportDTO
|
||||
{
|
||||
[DictionaryTranslateAttribute("Subject_Visit_Status")]
|
||||
public SubjectStatus SubjectStatus { get; set; }
|
||||
|
||||
public string Modality { get; set; } = string.Empty;
|
||||
|
||||
|
|
|
|||
|
|
@ -134,7 +134,6 @@ namespace IRaCIS.Core.Application.Service
|
|||
CreateMap<SubjectVisit, PMKCheckEXportDTO>()
|
||||
.ForMember(d => d.TalkContent, u => u.MapFrom(s => s.CheckChallengeDialogList.OrderByDescending(y => y.CreateTime).Select(x => x.TalkContent).FirstOrDefault()))
|
||||
.ForMember(d => d.SubjectCode, u => u.MapFrom(s => s.Subject.Code))
|
||||
.ForMember(d => d.SubjectStatus, u => u.MapFrom(s => s.Subject.Status))
|
||||
.ForMember(d => d.TrialSiteCode, u => u.MapFrom(s => s.TrialSite.TrialSiteCode))
|
||||
|
||||
.ForMember(d => d.CheckDialogList, u => u.MapFrom(s => s.CheckChallengeDialogList))
|
||||
|
|
|
|||
Loading…
Reference in New Issue