上传oss 对比遗漏提交

IRC_NewDev
hang 2023-10-08 10:44:12 +08:00
commit a888ed25ec
6 changed files with 71 additions and 8 deletions

View File

@ -6799,6 +6799,16 @@
分组 分组
</summary> </summary>
</member> </member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingQuestionTrialView.ClassifyAlgorithms">
<summary>
分类算法
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingQuestionTrialView.ClassifyQuestionId">
<summary>
分类问题Id
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingQuestionTrialView.GlobalReadingShowType"> <member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ReadingQuestionTrialView.GlobalReadingShowType">
<summary> <summary>
全局阅片显示类型 全局阅片显示类型
@ -7544,6 +7554,16 @@
Id Id
</summary> </summary>
</member> </member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionTrialInDto.ClassifyAlgorithms">
<summary>
分类算法
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionTrialInDto.ClassifyQuestionId">
<summary>
分类问题Id
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionTrialInDto.IsCopyLesions"> <member name="P:IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionTrialInDto.IsCopyLesions">
<summary> <summary>
是否复制病灶 是否复制病灶

View File

@ -765,7 +765,7 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
if (_provider.Exists($"StudyUid_{trialId}_{studyInstanceUid}")) if (_provider.Exists($"StudyUid_{trialId}_{studyInstanceUid}"))
{ {
result.AllowUpload = false; result.AllowUpload = false;
result.AllowReUpload = false; result.AllowReUpload = false;
@ -834,6 +834,13 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
_provider.Set($"StudyUid_{trialId}_{studyInstanceUid}", _userInfo.Id, TimeSpan.FromSeconds(30)); _provider.Set($"StudyUid_{trialId}_{studyInstanceUid}", _userInfo.Id, TimeSpan.FromSeconds(30));
} }
} }
else
{
lock (lockObj)
{
_provider.Remove($"StudyUid_{trialId}_{studyInstanceUid}");
}
}
return result; return result;
} }

View File

@ -812,9 +812,17 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary> /// </summary>
public string GroupName { get; set; } public string GroupName { get; set; }
/// <summary>
/// 分类算法
/// </summary>
public string ClassifyAlgorithms { get; set; } = string.Empty;
/// <summary>
public Guid? GroupId { get; set; } /// 分类问题Id
/// </summary>
public Guid? ClassifyQuestionId { get; set; }
public Guid? GroupId { get; set; }
/// <summary> /// <summary>
/// 全局阅片显示类型 /// 全局阅片显示类型
@ -1775,6 +1783,16 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public Guid? Id { get; set; } public Guid? Id { get; set; }
public bool IsAdditional { get; set; } public bool IsAdditional { get; set; }
/// <summary>
/// 分类算法
/// </summary>
public string ClassifyAlgorithms { get; set; } = string.Empty;
/// <summary>
/// 分类问题Id
/// </summary>
public Guid? ClassifyQuestionId { get; set; }
public Guid TrialId { get; set; } public Guid TrialId { get; set; }
/// <summary> /// <summary>

View File

@ -2040,7 +2040,7 @@ namespace IRaCIS.Application.Services
rowInfo.Id = inDto.RowId == null ? NewId.NextGuid() : inDto.RowId.Value; rowInfo.Id = inDto.RowId == null ? NewId.NextGuid() : inDto.RowId.Value;
result.RowId = rowInfo.Id; result.RowId = rowInfo.Id;
rowInfo.IsCurrentTaskAdd = isCurrentTaskAdd; rowInfo.IsCurrentTaskAdd = isCurrentTaskAdd;
rowInfo.FristAddTaskId = inDto.RowId == null ? rowInfo.Id : rowInfo.FristAddTaskId; rowInfo.FristAddTaskId = inDto.RowId == null ? inDto.VisitTaskId : rowInfo.FristAddTaskId;
if (inDto.RowId == null) if (inDto.RowId == null)
{ {

View File

@ -886,13 +886,20 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
List<QuestionMark?> needCopyMarks = new List<QuestionMark?>() List<QuestionMark?> needCopyMarks = new List<QuestionMark?>()
{ {
QuestionMark.IsLymph,
QuestionMark.Lesion,
QuestionMark.Organ,
QuestionMark.Location,
QuestionMark.Part,
QuestionMark.LowPPDLDi, QuestionMark.LowPPDLDi,
QuestionMark.LowPPDSDi, QuestionMark.LowPPDSDi,
QuestionMark.NadirPPD, QuestionMark.NadirPPD,
QuestionMark.LowPPDVisit, QuestionMark.LowPPDVisit,
}; };
var rowIndexList = copyTableAnswers.Select(x => x.RowIndex).Distinct().ToList(); var rowIndexList = copyTableAnswers.Select(x => x.RowIndex).Distinct().ToList();
// 找到靶病灶问题Id // 找到靶病灶问题Id
@ -951,6 +958,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
VisitTaskId= visitTaskId, VisitTaskId= visitTaskId,
FirstAddTaskId=x.FirstAddTaskId, FirstAddTaskId=x.FirstAddTaskId,
QuestionId=x.QuestionId, QuestionId=x.QuestionId,
QuestionType=x.QuestionType,
}).ToListAsync(); }).ToListAsync();

View File

@ -252,9 +252,19 @@ namespace IRaCIS.Core.Domain.Models
public string GroupEnName { get; set; } = string.Empty; public string GroupEnName { get; set; } = string.Empty;
/// <summary> /// <summary>
/// 是否复制病灶 /// 分类算法
/// </summary> /// </summary>
public bool IsCopyLesions { get; set; } = false; public string ClassifyAlgorithms { get; set; } = string.Empty;
/// <summary>
/// 分类问题Id
/// </summary>
public Guid? ClassifyQuestionId { get; set; }
/// <summary>
/// 是否复制病灶
/// </summary>
public bool IsCopyLesions { get; set; } = false;
/// <summary> /// <summary>
/// 分组ID /// 分组ID