临床数据稽查
parent
f6d65b5abe
commit
986dbff422
|
@ -4179,6 +4179,11 @@
|
|||
病灶类型
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Core.Application.ViewModel.OrganInfoQuery.LesionType">
|
||||
<summary>
|
||||
病灶类型
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:IRaCIS.Core.Application.ViewModel.OrganInfoAddOrEdit">
|
||||
<summary> OrganInfoAddOrEdit 列表查询参数模型</summary>
|
||||
</member>
|
||||
|
|
|
@ -26,3 +26,11 @@ update DataInspection set JsonDetail= replace(cast(JsonDetail as varchar(max)),'
|
|||
|
||||
update ReadingClinicalData set FileCount=(select count(*) from ReadingClinicalDataPDF where ReadingClinicalDataId =ReadingClinicalData.Id)
|
||||
update NoneDicomStudy set FileCount=(select count(*) from NoneDicomStudyFile where NoneDicomStudyId =NoneDicomStudy.Id)
|
||||
|
||||
|
||||
update DataInspection set CreateUserName= (select UserName from [User] where [User].Id = DataInspection.CreateUserId)
|
||||
|
||||
update DataInspection set RoleName=(select UserName from [User] INNER join UserType on [User].UserTypeId =UserType.Id where [User].Id=DataInspection.CreateUserId)
|
||||
|
||||
update DataInspection set CreateUserRealName=(select LastName+' / '+FirstName from [User] where [User].Id=DataInspection.CreateUserId)
|
||||
|
||||
|
|
|
@ -816,6 +816,7 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
|||
|
||||
await InsertInspection<ClinicalDataTrialSet>(entity, type, x => new InspectionConvertDTO()
|
||||
{
|
||||
IsDistinctionInterface=false,
|
||||
ObjectRelationParentId = entity.TrialId,
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue