修改一版

Uat_Study
he 2022-06-01 08:59:43 +08:00
parent e97538015d
commit 4769baf720
3 changed files with 1 additions and 9 deletions

View File

@ -279,15 +279,11 @@ namespace IRaCIS.Core.API.Controllers
memoryStream.Seek(0, SeekOrigin.Begin);
var (studyId, studyCode) = await _dicomArchiveService.ArchiveDicomStreamAsync(memoryStream, savedInfo, seriesInstanceUidList, sopInstanceUidList);
if (!archivedStudyIds.Contains(studyId))
{
archivedStudyIds.Add(studyId);
archiveResult.ArchivedDicomStudies.Add(new DicomStudyBasicDTO() { StudyCode = studyCode, Id = studyId });
}
}

View File

@ -65,8 +65,7 @@ namespace IRaCIS.Application.Services
x.FileName,
x.UploadType,
x.Id,
})
.ToListAsync();
}).ToListAsync();
return list;
}

View File

@ -19,9 +19,6 @@ namespace IRaCIS.Core.Application.Service
CreateMap<ClinicalData, ClinicalDataView>();
CreateMap<PreviousPDF, PreviousPDFAddOrEdit>().ReverseMap();
CreateMap<PreviousPDF, PreviousPDFView>();