Compare commits

..

No commits in common. "58eb59bd6133f7613c00c30cd77c23f50c549f04" and "b29ed4d6a213aae2b57853c5e864f6ee42a43ef1" have entirely different histories.

2 changed files with 3 additions and 5 deletions

View File

@ -101,7 +101,7 @@ public static class DicomSliceSorterFast
#endregion
public class MaskRegion
public sealed class MaskRegion
{
public int X { get; }
public int Y { get; }

View File

@ -1393,12 +1393,10 @@ namespace IRaCIS.Core.Application.Image.QA
// 获取当前缓存中的访视Id集合如果没有则创建空集合
var skippedVisits = await _fusionCache.GetOrDefaultAsync<List<Guid>>(CacheKeys.UserQCSkipTask(_userInfo.UserRoleId), new List<Guid>() { });
var skippedVisits = await _fusionCache.GetOrDefaultAsync<List<Guid>>(CacheKeys.UserQCSkipTask(_userInfo.UserRoleId), new List<Guid>() { inDto.SubjectVisitId });
//跳过当前访视
if (inDto.IsSkipCurrentVisit)
{
skippedVisits.Add(inDto.SubjectVisitId);
currentActionList = currentActionList.Where(t => !skippedVisits.Contains(t.SubjectVisitId)).ToList();
}