Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
8456108db8
|
@ -584,7 +584,7 @@ namespace IRaCIS.Core.API.Controllers
|
|||
|
||||
var ossRelativePath = await oSSService.UploadToOSSAsync(fileStream, "InspectionUpload/Check", realFileName);
|
||||
|
||||
await _inspectionFileRepository.AddAsync(new InspectionFile() { FileName = realFileName, RelativePath = ossRelativePath, TrialId = trialId });
|
||||
await _inspectionFileRepository.AddAsync(new InspectionFile() { FileName = realFileName, RelativePath = ossRelativePath, TrialId = trialId }, true);
|
||||
|
||||
return ossRelativePath;
|
||||
|
||||
|
@ -823,7 +823,7 @@ namespace IRaCIS.Core.API.Controllers
|
|||
|
||||
var ossRelativePath = await oSSService.UploadToOSSAsync(fileStream, "InspectionUpload/SiteSurvey", realFileName);
|
||||
|
||||
await _inspectionFileRepository.AddAsync(new InspectionFile() { FileName = realFileName, RelativePath = ossRelativePath, TrialId = trialId });
|
||||
await _inspectionFileRepository.AddAsync(new InspectionFile() { FileName = realFileName, RelativePath = ossRelativePath, TrialId = trialId },true);
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -2012,6 +2012,15 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
|||
type = type + "/" + 2;
|
||||
}
|
||||
break;
|
||||
|
||||
|
||||
}
|
||||
|
||||
if(_userInfo.RequestUrl== "NoneDicomStudy/deleteNoneDicomStudy"|| _userInfo.RequestUrl == "NoneDicomStudy/deleteNoneDicomStudyFile")
|
||||
{
|
||||
isDistinctionInterface = false;
|
||||
|
||||
extraIdentification = "/DeleteNoneDicomFileZero";
|
||||
}
|
||||
|
||||
if (entity.CheckChallengeState == CheckChanllengeTypeEnum.CRCWaitPMReply || entity.CheckChallengeState == CheckChanllengeTypeEnum.PMWaitCRCReply)
|
||||
|
|
Loading…
Reference in New Issue