新增 IsPMSetBack

Uat_Study
hang 2022-07-25 14:07:36 +08:00
parent 72a070086d
commit 1c40859e72
3 changed files with 19 additions and 11 deletions

View File

@ -49,6 +49,8 @@ namespace IRaCIS.Core.Application.ViewModel
public String TrialSiteCode { get; set; } = String.Empty;
public string SubjectCode { get; set; } = String.Empty;
public bool IsPMSetBack { get; set; }
}

View File

@ -1927,16 +1927,19 @@ namespace IRaCIS.Core.Application.Service.Allocation
foreach (var influenceTask in influenceTaskList)
{
////同意的访视 因为要记录具体的操作,所以废弃
//if (influenceTask.Id == task.Id)
//同意的访视 因为要记录具体的操作,所以废弃
if (influenceTask.Id == task.Id)
{
//influenceTaskList.ForEach(t =>
//{
// influenceTaskList.ForEach(t =>
// {
// //记录实际影像的任务
// influenceTask.TaskInfluenceList.Add(new TaskInfluence() { InfluenceTaskId = t.Id });
// });
//}
//});
influenceTask.IsPMSetBack = true;
}
//申请的访视 要不是重阅重置,要不就是失效 不会存在取消分配
if (influenceTask.ReadingCategory == ReadingCategory.Visit && influenceTask.VisitTaskNum != task.VisitTaskNum)

View File

@ -132,7 +132,10 @@ namespace IRaCIS.Core.Domain.Models
/// </summary>
public bool IsReReadingCreate { get; set; }
/// <summary>
/// PM 对该任务进行了回退 影响的任务不设置
/// </summary>
public bool IsPMSetBack { get; set; }
/// <summary> 裁判结果的任务ID </summary>