修改一版

Test.EIImageViewer
he 2022-06-08 18:21:07 +08:00
parent 56e8721ce0
commit 787401bdff
2 changed files with 10 additions and 6 deletions

View File

@ -450,6 +450,11 @@
项目ID 项目ID
</summary> </summary>
</member> </member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ClinicalDataTrialSetAddOrEdit.IsCheck">
<summary>
是否勾选
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ClinicalDataSystemSetAddOrEdit.ClinicalDataSetName"> <member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ClinicalDataSystemSetAddOrEdit.ClinicalDataSetName">
<summary> <summary>
名称 名称
@ -470,11 +475,6 @@
是否启用 是否启用
</summary> </summary>
</member> </member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ClinicalDataSystemSetAddOrEdit.IsCheck">
<summary>
是否勾选
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ClinicalDataTrialSetView.TrialId"> <member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ClinicalDataTrialSetView.TrialId">
<summary> <summary>
项目ID 项目ID
@ -3295,7 +3295,7 @@
<summary> <summary>
将系统配置添加到项目配置 将系统配置添加到项目配置
</summary> </summary>
<param name="inDto"></param> <param name="trialId"></param>
<returns></returns> <returns></returns>
</member> </member>
<member name="M:IRaCIS.Application.Services.ClinicalDataSetService.DeleteClinicalTrialSetData(System.Guid)"> <member name="M:IRaCIS.Application.Services.ClinicalDataSetService.DeleteClinicalTrialSetData(System.Guid)">

View File

@ -146,6 +146,9 @@ namespace IRaCIS.Core.Application.Services
ReadingPeriodSetId = readingPeriodSet.Id, ReadingPeriodSetId = readingPeriodSet.Id,
}); });
//var trialid = await _subjectVisitRepository.Where(x => x.Id == svCommand.Id).Select(x => x.TrialId).FirstOrDefaultAsync();
// 当前访视没有阅片期才添加 // 当前访视没有阅片期才添加
if (!await _readModuleRepository.AnyAsync(x => x.SubjectVisitId == svCommand.Id && x.ReadingSetType == ReadingSetType.ImageReading)) if (!await _readModuleRepository.AnyAsync(x => x.SubjectVisitId == svCommand.Id && x.ReadingSetType == ReadingSetType.ImageReading))
{ {
@ -159,6 +162,7 @@ namespace IRaCIS.Core.Application.Services
ModuleName = "Global",// 全局阅片 ModuleName = "Global",// 全局阅片
ReadingSetType = ReadingSetType.ImageReading, ReadingSetType = ReadingSetType.ImageReading,
ModuleType = ModuleTypeEnum.Global, ModuleType = ModuleTypeEnum.Global,
TrialId= dbBeforeEntity.TrialId,
}); });
} }
} }