影像修改信息展示
continuous-integration/drone/push Build is passing Details

Test_HIR_Net8
hang 2025-08-28 14:34:24 +08:00
parent 5258ae5d4b
commit afaba95ff2
2 changed files with 8 additions and 0 deletions

View File

@ -136,6 +136,9 @@ namespace IRaCIS.Core.SCP.Service
}
findPatient.LatestPushTime = DateTime.Now;
findPatient.PatientName = dataset.GetSingleValueOrDefault(DicomTag.PatientName, string.Empty);
findPatient.PatientSex = dataset.GetSingleValueOrDefault(DicomTag.PatientSex, string.Empty);
findPatient.PatientAge = dataset.GetSingleValueOrDefault(DicomTag.PatientAge, string.Empty);
}
if (findStudy == null)
@ -193,6 +196,9 @@ namespace IRaCIS.Core.SCP.Service
findStudy.DicomStudyDate = dataset.GetSingleValueOrDefault(DicomTag.StudyDate, string.Empty);
findStudy.DicomStudyTime = dataset.GetSingleValueOrDefault(DicomTag.StudyTime, string.Empty);
findStudy.CalledAE = calledAE;
findStudy.PatientName = dataset.GetSingleValueOrDefault(DicomTag.PatientName, string.Empty);
findStudy.PatientSex = dataset.GetSingleValueOrDefault(DicomTag.PatientSex, string.Empty);
findStudy.PatientAge = dataset.GetSingleValueOrDefault(DicomTag.PatientAge, string.Empty);
}

View File

@ -660,6 +660,8 @@ namespace IRaCIS.Core.Application.ViewModel
[NotDefault]
public Guid TrialReadingCriterionId { get; set; }
public EvaluateProgress EvaluateProgressEnum { get; set; }
}
public class IRUnReadOutDto