下载提交事务
continuous-integration/drone/push Build is passing Details

IRC_NewDev
hang 2024-09-11 16:21:36 +08:00
parent 81abcf39fc
commit 0f495a4568
1 changed files with 2 additions and 2 deletions

View File

@ -745,7 +745,7 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
ImageSize = result.StudyList.Sum(t => t.SeriesList.Sum(s => s.InstanceList.Sum(i => i.FileSize))) + result.NoneDicomStudyList.Sum(t => t.FileList.Sum(s => s.FileSize))
?? 0
};
await _trialImageDownloadRepository.AddAsync(preDownloadInfo, true);
return ResponseOutput.Ok(result, preDownloadInfo.Id);
}
@ -925,7 +925,7 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
) ?? 0
};
await _trialImageDownloadRepository.AddAsync(preDownloadInfo);
await _trialImageDownloadRepository.AddAsync(preDownloadInfo,true);
return ResponseOutput.Ok(result, preDownloadInfo.Id);
}