修改一致性核查话语
parent
5518770cf6
commit
8ae0ae96e3
|
@ -613,7 +613,7 @@ namespace IRaCIS.Core.Application.Service.Common
|
||||||
|
|
||||||
cloneObj.AgainUserName = item.UserName;
|
cloneObj.AgainUserName = item.UserName;
|
||||||
cloneObj.AgainEvaluateResult = item.EvaluateResult;
|
cloneObj.AgainEvaluateResult = item.EvaluateResult;
|
||||||
cloneObj.ArmEnum = item.ArmEnum;
|
cloneObj.AgainArmEnum = item.ArmEnum;
|
||||||
|
|
||||||
cloneObj.IsGroupAnalysisDiffToOriginalData = cloneObj.ArmEnum == Arm.DoubleReadingArm1 ? item.IsGroupDiffArm1 : item.IsGroupDiffArm2;
|
cloneObj.IsGroupAnalysisDiffToOriginalData = cloneObj.ArmEnum == Arm.DoubleReadingArm1 ? item.IsGroupDiffArm1 : item.IsGroupDiffArm2;
|
||||||
|
|
||||||
|
|
|
@ -626,7 +626,7 @@ namespace IRaCIS.Core.Application.Contracts
|
||||||
{
|
{
|
||||||
|
|
||||||
[DictionaryTranslateAttribute("ArmEnum")]
|
[DictionaryTranslateAttribute("ArmEnum")]
|
||||||
public Arm AgainArmEnum { get; set; }
|
public Arm? AgainArmEnum { get; set; }
|
||||||
|
|
||||||
public string AgainUserName { get; set; }
|
public string AgainUserName { get; set; }
|
||||||
|
|
||||||
|
|
|
@ -113,7 +113,7 @@ namespace IRaCIS.Core.Application.MediatR.Handlers
|
||||||
var dbSV = (await _subjectVisitRepository.FirstOrDefaultAsync(t => t.Id == sv.SubjectVisitId)).IfNullThrowException();
|
var dbSV = (await _subjectVisitRepository.FirstOrDefaultAsync(t => t.Id == sv.SubjectVisitId)).IfNullThrowException();
|
||||||
|
|
||||||
|
|
||||||
// 该访视 在ETC Excel中没有任何数据
|
// 该访视 在EDC Excel中没有任何数据
|
||||||
if (etcVisitStudyList.Count == 0)
|
if (etcVisitStudyList.Count == 0)
|
||||||
{
|
{
|
||||||
dialogMsg.AppendLine($"<br/>");
|
dialogMsg.AppendLine($"<br/>");
|
||||||
|
@ -122,7 +122,7 @@ namespace IRaCIS.Core.Application.MediatR.Handlers
|
||||||
foreach (var item in sv.StudyList)
|
foreach (var item in sv.StudyList)
|
||||||
{
|
{
|
||||||
num++;
|
num++;
|
||||||
dialogMsg.AppendLine($"<br>{num}.{item.StudyDate} {item.Modality} 在导入文件中不存在");
|
dialogMsg.AppendLine($"<br>{num}.{item.StudyDate}的{item.Modality}影像检查(EDC 缺少) ");
|
||||||
}
|
}
|
||||||
|
|
||||||
dialogMsg.AppendLine($"<br/>");
|
dialogMsg.AppendLine($"<br/>");
|
||||||
|
|
Loading…
Reference in New Issue