Compare commits
No commits in common. "58eb59bd6133f7613c00c30cd77c23f50c549f04" and "b29ed4d6a213aae2b57853c5e864f6ee42a43ef1" have entirely different histories.
58eb59bd61
...
b29ed4d6a2
|
|
@ -101,7 +101,7 @@ public static class DicomSliceSorterFast
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
public class MaskRegion
|
public sealed class MaskRegion
|
||||||
{
|
{
|
||||||
public int X { get; }
|
public int X { get; }
|
||||||
public int Y { get; }
|
public int Y { get; }
|
||||||
|
|
|
||||||
|
|
@ -1393,12 +1393,10 @@ namespace IRaCIS.Core.Application.Image.QA
|
||||||
|
|
||||||
|
|
||||||
// 获取当前缓存中的访视Id集合(如果没有则创建空集合)
|
// 获取当前缓存中的访视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)
|
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