组件一致性

Uat_Study
hang 2022-07-28 12:01:41 +08:00
parent fec4992544
commit 9d7256ff81
2 changed files with 32 additions and 3 deletions

View File

@ -1638,6 +1638,36 @@
项目Id
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GetIRMedicalFeedbackListInDto.AuditAdviceEnum">
<summary>
审核建议
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GetIRMedicalFeedbackListInDto.DoctorUserIdeaEnum">
<summary>
阅片人是否认同
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GetIRMedicalFeedbackListInDto.IsClosedDialog">
<summary>
是否关闭对话
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GetIRMedicalFeedbackListInDto.IsHaveQuestion">
<summary>
是否有问题
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GetIRMedicalFeedbackListInDto.MedicalDialogCloseEnum">
<summary>
医学审核对话关闭原因
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GetIRMedicalFeedbackListInDto.IsInvalid">
<summary>
无效的 为True无效
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GetIRMedicalFeedbackListOutDto.MedicalDialogCloseEnum">
<summary>
医学审核对话关闭原因

View File

@ -363,13 +363,12 @@ namespace IRaCIS.Core.Application.Service
if (filterObj.IsGenerateGlobalTask)
{
var globalTask = (subject.SubjectTaskVisitList.Take(filterObj.PlanVisitCount).Last()).Clone();
var globalTask = (subjectAddTaskList.Take(filterObj.PlanVisitCount).Last()).Clone();
globalTask.TaskName = (int)globalTask.VisitTaskNum + "Global";
globalTask.TaskBlindName = (int)globalTask.VisitTaskNum + "Global";
globalTask.ReadingCategory = ReadingCategory.Global;
globalTask.VisitTaskNum += ReadingCommon.TaskNumDic[ReadingCategory.Global];
globalTask.ArmEnum = Arm.GroupConsistentArm;
globalTask.DoctorUserId = needAddDoctorUserId;
globalTask.DoctorUserId =needAddDoctorUserId;
subjectAddTaskList.Add(globalTask);
}