Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
commit
af160e3c96
|
|
@ -101,7 +101,7 @@ public static class DicomSliceSorterFast
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
public sealed class MaskRegion
|
public class MaskRegion
|
||||||
{
|
{
|
||||||
public int X { get; }
|
public int X { get; }
|
||||||
public int Y { get; }
|
public int Y { get; }
|
||||||
|
|
|
||||||
|
|
@ -1393,10 +1393,12 @@ namespace IRaCIS.Core.Application.Image.QA
|
||||||
|
|
||||||
|
|
||||||
// 获取当前缓存中的访视Id集合(如果没有则创建空集合)
|
// 获取当前缓存中的访视Id集合(如果没有则创建空集合)
|
||||||
var skippedVisits = await _fusionCache.GetOrDefaultAsync<List<Guid>>(CacheKeys.UserQCSkipTask(_userInfo.UserRoleId), new List<Guid>() { inDto.SubjectVisitId });
|
var skippedVisits = await _fusionCache.GetOrDefaultAsync<List<Guid>>(CacheKeys.UserQCSkipTask(_userInfo.UserRoleId), new List<Guid>() { });
|
||||||
//跳过当前访视
|
//跳过当前访视
|
||||||
if (inDto.IsSkipCurrentVisit)
|
if (inDto.IsSkipCurrentVisit)
|
||||||
{
|
{
|
||||||
|
skippedVisits.Add(inDto.SubjectVisitId);
|
||||||
|
|
||||||
currentActionList = currentActionList.Where(t => !skippedVisits.Contains(t.SubjectVisitId)).ToList();
|
currentActionList = currentActionList.Where(t => !skippedVisits.Contains(t.SubjectVisitId)).ToList();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue