系统临床数据稽查
parent
37455f539d
commit
ba37862adf
|
@ -808,23 +808,37 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
||||||
|
|
||||||
#region 阅片期临床数据
|
#region 阅片期临床数据
|
||||||
|
|
||||||
//阅片期临床数据 父层级未记录稽查(项目临床数据设置)
|
//阅片期临床数据
|
||||||
|
|
||||||
|
|
||||||
|
//系统临床数据配置
|
||||||
|
|
||||||
|
foreach (var item in entitys.Where(x => x.Entity.GetType() == typeof(ClinicalDataSystemSet)))
|
||||||
|
{
|
||||||
|
var entity = item.Entity as ClinicalDataSystemSet;
|
||||||
|
|
||||||
|
await InsertInspection<ClinicalDataSystemSet>(entity, type, x => new InspectionConvertDTO()
|
||||||
|
{
|
||||||
|
IsDistinctionInterface = false,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
//项目临床数据配置
|
||||||
foreach (var item in entitys.Where(x => x.Entity.GetType() == typeof(ClinicalDataTrialSet)))
|
foreach (var item in entitys.Where(x => x.Entity.GetType() == typeof(ClinicalDataTrialSet)))
|
||||||
{
|
{
|
||||||
var entity = item.Entity as ClinicalDataTrialSet;
|
var entity = item.Entity as ClinicalDataTrialSet;
|
||||||
|
|
||||||
await InsertInspection<ClinicalDataTrialSet>(entity, type, x => new InspectionConvertDTO()
|
await InsertInspection<ClinicalDataTrialSet>(entity, type, x => new InspectionConvertDTO()
|
||||||
{
|
{
|
||||||
IsDistinctionInterface=false,
|
IsDistinctionInterface = false,
|
||||||
ObjectRelationParentId = entity.TrialId,
|
ObjectRelationParentId = entity.TrialId,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// CRC PM 临床数据
|
||||||
foreach (var item in entitys.Where(x => x.Entity.GetType() == typeof(ReadingClinicalData)))
|
foreach (var item in entitys.Where(x => x.Entity.GetType() == typeof(ReadingClinicalData)))
|
||||||
{
|
{
|
||||||
var entity = item.Entity as ReadingClinicalData;
|
var entity = item.Entity as ReadingClinicalData;
|
||||||
|
|
||||||
await InsertInspection<ReadingClinicalData>(item.Entity as ReadingClinicalData, type, x => new InspectionConvertDTO()
|
await InsertInspection<ReadingClinicalData>(item.Entity as ReadingClinicalData, type, x => new InspectionConvertDTO()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue