Uat_Study
he 2022-11-30 09:57:07 +08:00
parent 7880ed318e
commit 14b892889b
3 changed files with 4 additions and 13 deletions

View File

@ -358,11 +358,11 @@
</summary>
<returns></returns>
</member>
<member name="M:IRaCIS.Core.Application.Service.Allocation.VisitTaskService.GetOrderReadingIQueryable(System.Guid,System.Nullable{System.Guid},System.String)">
<member name="M:IRaCIS.Core.Application.Service.Allocation.VisitTaskService.GetOrderReadingIQueryable(IRaCIS.Core.Application.ViewModel.GetOrderReadingIQueryableInDto)">
<summary>
获取有序阅片IQuery对象
</summary>
<param name="trialId"></param>
<param name="inDto"></param>
<returns></returns>
</member>
<member name="M:IRaCIS.Core.Application.Service.Allocation.VisitTaskService.GetIRHaveReadTaskList(IRaCIS.Core.Application.ViewModel.VisitTaskQuery)">

View File

@ -234,16 +234,7 @@ namespace IRaCIS.Core.Application.ViewModel
public bool IsUrgent => UnReadTaskList.Any(t => t.IsUrgent);
public int UnReadTaskCount
{
get
{
return this.UnReadTaskList.Count();
}
}
public int UnReadTaskCount { get; set; }
public bool ExistReadingApply { get; set; }

View File

@ -979,7 +979,7 @@ namespace IRaCIS.Core.Application.Service.Allocation
{
SubjectId = x.Key.SubjectId,
SubjectCode = x.Key.BlindSubjectCode == string.Empty ? x.Key.Code : x.Key.BlindSubjectCode,
UnReadTaskCount = x.Where(y => y.ReadingTaskState != ReadingTaskState.HaveSigned).Count(),
ExistReadingApply = x.Any(y => y.ReReadingApplyState == ReReadingApplyState.DocotorHaveApplyed),
UnReadTaskList = x.Where(y => y.ReadingTaskState != ReadingTaskState.HaveSigned).OrderBy(x => x.VisitTaskNum)
.Select(u => new IRUnreadTaskView()