代码修改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
67091fd72f
commit
670cee5923
|
@ -1713,7 +1713,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
var taskAnswer = await GetVisitTaskAnswerList(inDto);
|
||||
if (inDto.IsBaseLine)
|
||||
{
|
||||
return string.Empty;
|
||||
return "NA";
|
||||
}
|
||||
|
||||
|
||||
|
@ -2053,7 +2053,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
{
|
||||
if (inDto.IsBaseLine)
|
||||
{
|
||||
return string.Empty;
|
||||
return "NA";
|
||||
}
|
||||
|
||||
var lastTaskId = await GetLastVisitTaskId(inDto);
|
||||
|
@ -2620,10 +2620,10 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
{
|
||||
|
||||
NewLesionAssessment result = NewLesionAssessment.No;
|
||||
//if (inDto.IsBaseLine)
|
||||
//{
|
||||
// return NewLesionAssessment.NA.GetEnumInt();
|
||||
//}
|
||||
if (inDto.IsBaseLine)
|
||||
{
|
||||
return NewLesionAssessment.NA.GetEnumInt();
|
||||
}
|
||||
|
||||
var tableRows = inDto.QuestionInfo.Where(x => x.LesionType == LesionType.NewLesions).SelectMany(x => x.TableRowInfoList).ToList();
|
||||
|
||||
|
|
|
@ -2165,7 +2165,6 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
|||
|
||||
|
||||
//临床数据表格问题
|
||||
|
||||
foreach (var item in entitys.Where(x => x.Entity.GetType() == typeof(TrialClinicalTableQuestion)))
|
||||
{
|
||||
var type = GetEntityAuditOpt(item);
|
||||
|
|
Loading…
Reference in New Issue