Compare commits
2 Commits
6d9cfe5e45
...
e32b7c2ca4
Author | SHA1 | Date |
---|---|---|
|
e32b7c2ca4 | |
|
e902fe88d0 |
|
@ -200,15 +200,21 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
|||
break;
|
||||
}
|
||||
|
||||
var trialDicomAE =await _dbContext.TrialDicomAE.Where(t => t.TrialId == entity.Id).FirstOrDefaultAsync();
|
||||
|
||||
await InsertInspection<Trial>(item.Entity as Trial, type, x => new InspectionConvertDTO()
|
||||
{
|
||||
TrialId = x.Id,
|
||||
|
||||
ExtraIndentification = extraIdentification,
|
||||
}, new
|
||||
{
|
||||
//TrialDicList = string.Join(",", trialDics)
|
||||
|
||||
CalledAE = trialDicomAE?.CalledAE,
|
||||
IP = trialDicomAE?.IP,
|
||||
Port = trialDicomAE?.Port,
|
||||
IsTestOK = trialDicomAE?.IsTestOK,
|
||||
ImageFormatListStr = string.Join("|", entity.ImageFormatList),
|
||||
StudyNamesStr = string.Join("|", entity.StudyNameList.Where(x => x.IsChoose).Select(x => _userInfo.IsEn_Us ? x.EnName : x.Name)),
|
||||
|
||||
|
|
Loading…
Reference in New Issue