修改pacs 验证
continuous-integration/drone/push Build is passing Details

IRC_NewDev
hang 2024-08-21 12:24:30 +08:00
parent 71fb1eac6b
commit 418cc9b4b9
1 changed files with 3 additions and 1 deletions

View File

@ -327,7 +327,7 @@ namespace IRaCIS.Application.Services
var verifyStudyInfo = _repository.Where<DicomStudy>(t => t.TrialId == trialId && t.Id == waitUploadItem.Id).ProjectTo<VerifyStudyDto>(_mapper.ConfigurationProvider).FirstOrDefault();
var currentStudyResult = new VerifyStudyUploadResult();
var currentStudyResult = new VerifySCPStudyUploadResult();
//数据库不存在该检查 允许上传
if (verifyStudyInfo == null)
@ -354,6 +354,8 @@ namespace IRaCIS.Application.Services
currentStudyResult.ErrorMesseage = _localizer["Study_ImgAlreadyUploaded", verifyStudyInfo.SubjectCode, verifyStudyInfo.VisitName];
}
}
result.Add(currentStudyResult);
}