裁判任务不展示 上传下载功能

IRC_NewDev
hang 2024-09-06 15:47:13 +08:00
parent f4df76cccd
commit 67a8f10b03
3 changed files with 12 additions and 4 deletions

View File

@ -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>();
}

View File

@ -112,7 +112,6 @@ namespace IRaCIS.Application.Services
public string TestName { get; set; }
}

View File

@ -14,6 +14,12 @@
<OutputPath>bin</OutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Remove="OK\**" />
<EmbeddedResource Remove="OK\**" />
<None Remove="OK\**" />
</ItemGroup>
<ItemGroup>
@ -72,7 +78,6 @@
</ItemGroup>
<ItemGroup>
<Folder Include="OK\" />
<Folder Include="TT_Template\Dto_New\" />
<Folder Include="TT_Template\IServices_New\" />
<Folder Include="TT_Template\Models_New\" />
@ -88,6 +93,10 @@
<PackageReference Include="Fluid.Core" Version="2.11.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="8.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.8">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.8" />
</ItemGroup>