修改添加pacs 影像bug
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
a6e260dce1
commit
7d419595ca
|
@ -420,7 +420,6 @@ namespace IRaCIS.Core.Application.Service
|
|||
{
|
||||
var newStuty = _mapper.Map<DicomStudy>(find.SCPStudy);
|
||||
|
||||
await _dicomStudyRepository.AddAsync(newStuty);
|
||||
|
||||
newStuty.SeqId = Guid.Empty;
|
||||
newStuty.Code = currentNextCodeInt;
|
||||
|
@ -430,6 +429,9 @@ namespace IRaCIS.Core.Application.Service
|
|||
newStuty.SubjectId = subjectId;
|
||||
newStuty.SubjectVisitId = subjectVisitId;
|
||||
|
||||
await _dicomStudyRepository.AddAsync(newStuty);
|
||||
|
||||
|
||||
var newSeriesList = _mapper.Map<List<DicomSeries>>(find.SeriesList);
|
||||
|
||||
foreach (var series in newSeriesList)
|
||||
|
|
Loading…
Reference in New Issue