临床数据稽查

Uat_Study
hang 2022-08-26 15:03:46 +08:00
parent f6d65b5abe
commit 986dbff422
3 changed files with 14 additions and 0 deletions

View File

@ -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>

View File

@ -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)

View File

@ -816,6 +816,7 @@ namespace IRaCIS.Core.Infra.EFCore.Common
await InsertInspection<ClinicalDataTrialSet>(entity, type, x => new InspectionConvertDTO()
{
IsDistinctionInterface=false,
ObjectRelationParentId = entity.TrialId,
});
}