Uat_Study
he 2022-04-26 09:05:10 +08:00
parent 663b40bdce
commit 963d5de5ee
1 changed files with 2 additions and 1 deletions

View File

@ -60,6 +60,7 @@ namespace IRaCIS.Core.Infra.EFCore
await _dbSet.AddAsync(entity).ConfigureAwait(false); await _dbSet.AddAsync(entity).ConfigureAwait(false);
// 添加稽查
await AddInspectionAsync(entity, isSaveAudit); await AddInspectionAsync(entity, isSaveAudit);
if (autoSave) if (autoSave)
@ -672,7 +673,7 @@ namespace IRaCIS.Core.Infra.EFCore
SubjectCode = data.Code, SubjectCode = data.Code,
IsSign = false, IsSign = false,
CreateTime = createtime, CreateTime = createtime,
Identification = "Init|Subject|Status|Subject", Identification = "Init|Subject|Status|Subject", // 初始化受试者信息
JsonDetail = entity.ToJcJson() JsonDetail = entity.ToJcJson()
}); });
} }