上传记录屏蔽+IR已下载修改

irc-add-image
hang 2026-07-30 17:43:17 +08:00
parent 34e9269916
commit f66829ca62
3 changed files with 18 additions and 3 deletions

View File

@ -69,7 +69,7 @@ public class FileUploadRecordAddOrEdit
public interface IFileUploadRecordService public interface IFileUploadRecordService
{ {
Task<IResponseOutput> AddOrUpdateFileUploadRecord(FileUploadRecordAddOrEdit addOrEditFileUploadRecord); Task<IResponseOutput> AddOrUpdateFileUploadRecord(FileUploadRecordAddOrEdit addOrEditFileUploadRecord);
} }
@ -89,6 +89,7 @@ public class FileUploadRecordService(IRepository<FileUploadRecord> _fileUploadRe
public async Task<IResponseOutput> AddOrUpdateFileUploadRecord(FileUploadRecordAddOrEdit addOrEditFileUploadRecord) public async Task<IResponseOutput> AddOrUpdateFileUploadRecord(FileUploadRecordAddOrEdit addOrEditFileUploadRecord)
{ {
return ResponseOutput.Ok();
addOrEditFileUploadRecord.IP = _userInfo.IP; addOrEditFileUploadRecord.IP = _userInfo.IP;

View File

@ -3284,6 +3284,20 @@
批次Id 批次Id
</summary> </summary>
</member> </member>
<member name="M:IRaCIS.Core.Application.Service.Inspection.InspectionService.getInspectionById(IRaCIS.Core.Application.Service.Inspection.DTO.InspectionDto)">
<summary>
根据Id获取稽查记录
</summary>
<param name="inDto"></param>
<returns></returns>
</member>
<member name="M:IRaCIS.Core.Application.Service.Inspection.InspectionService.SetJsonDetail(IRaCIS.Core.Application.Service.Inspection.DTO.InspectionDto)">
<summary>
设置稽查记录JsonDetail
</summary>
<param name="inDto"></param>
<returns></returns>
</member>
<member name="M:IRaCIS.Core.Application.Service.Inspection.InspectionService.SetTrialShowInspection(IRaCIS.Core.Application.Service.Inspection.DTO.SetTrialShowInspection)"> <member name="M:IRaCIS.Core.Application.Service.Inspection.InspectionService.SetTrialShowInspection(IRaCIS.Core.Application.Service.Inspection.DTO.SetTrialShowInspection)">
<summary> <summary>
设置项目稽查配置 设置项目稽查配置

View File

@ -119,11 +119,11 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
var subjectCode = string.Empty; var subjectCode = string.Empty;
var subjectId = inQuery.SubjectId; var subjectId = inQuery.SubjectId;
bool? isIRImageDownloaded = null; bool? isIRImageDownloaded = true;
if(inQuery.VisitTaskId != null) if(inQuery.VisitTaskId != null)
{ {
isIRImageDownloaded= _visitTaskRepository.Where(t => t.Id == inQuery.VisitTaskId).Select(t => t.IsIRImageDownloaded).FirstOrDefault(); //isIRImageDownloaded= _visitTaskRepository.Where(t => t.Id == inQuery.VisitTaskId).Select(t => t.IsIRImageDownloaded).FirstOrDefault();
} }
if (criterionInfo.IsReadingTaskViewInOrder == ReadingOrder.Random) if (criterionInfo.IsReadingTaskViewInOrder == ReadingOrder.Random)