Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing

This commit is contained in:
he
2024-09-06 16:14:26 +08:00
3 changed files with 12 additions and 4 deletions
@@ -298,6 +298,8 @@ namespace IRaCIS.Core.Application.ViewModel
public bool IsUrgent => UnReadCanReadTaskList.Any(t => t.IsUrgent);
public bool IsSubjectJudge => UnReadCanReadTaskList.All(t => t.ReadingCategory == ReadingCategory.Judge);
public int UnReadTaskCount { get; set; }
public int UnReadCanReadTaskCount { get; set; }
@@ -340,10 +342,8 @@ namespace IRaCIS.Core.Application.ViewModel
public int UrgentCount { get; set; }
// public int UrgentCount => UnReadCanReadTaskList.Count(t => t.IsUrgent);
public List<IRUnreadTaskView> UnReadCanReadTaskList { get; set; } = new List<IRUnreadTaskView>();
// public List<IRUnreadTaskView> UnReadCanReadTaskList => UnReadTaskList.Where(y => y.IsFrontTaskNeedSignButNotSign == false && (y.IsNeedClinicalDataSign == false || y.IsClinicalDataSign == true)).ToList();
public List<IRUnreadTaskView> UnReadTaskList { get; set; } = new List<IRUnreadTaskView>();
}