AIR 重阅
parent
26cd63936f
commit
a8a2ce677d
|
@ -5634,6 +5634,11 @@
|
|||
<member name="T:IRaCIS.Core.Application.ViewModel.TaskMedicalReviewQuery">
|
||||
<summary>TaskMedicalReviewQuery 列表查询参数模型</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Core.Application.ViewModel.TaskMedicalReviewQuery.Id">
|
||||
<summary>
|
||||
传了Id 就不查询这条数据
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Core.Application.ViewModel.VisitTaskViewBasic.ReadingTool">
|
||||
<summary>
|
||||
阅片工具
|
||||
|
|
|
@ -1084,11 +1084,17 @@ namespace IRaCIS.Core.Application.Service.Allocation
|
|||
|
||||
|
||||
var baseLineTaskIdList = baseLineTaskList.Select(t => t.Id).ToList();
|
||||
if (baseLineTaskList == null)
|
||||
|
||||
if (baseLineTaskIdList.Count == 0)
|
||||
{
|
||||
return ResponseOutput.NotOk("基线任务未阅完,不允许重阅基线任务");
|
||||
return ResponseOutput.Ok();
|
||||
}
|
||||
|
||||
//if (baseLineTaskList == null)
|
||||
//{
|
||||
// return ResponseOutput.NotOk("基线任务未阅完,不允许重阅基线任务");
|
||||
//}
|
||||
|
||||
await ApplyReReading(new ApplyReReadingCommand() { IsCopyFollowForms = false, IsCopyOrigenalForms = false, TaskIdList = baseLineTaskIdList, TrialId = command.TrialId, RequestReReadingReason = "AIR自动重阅基线", RequestReReadingType = RequestReReadingType.DocotorApply });
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue