IRC_NewDev
parent
12adf2f3a9
commit
5e6db93250
|
@ -1107,7 +1107,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
// 符合疾病进展
|
||||
if (accord)
|
||||
{
|
||||
await _readingTableQuestionAnswerRepository.UpdatePartialFromQueryAsync(x =>
|
||||
await _readingTableQuestionAnswerRepository.BatchUpdateNoTrackingAsync(x =>
|
||||
x.VisitTaskId == inDto.VisitTaskId &&
|
||||
x.RowIndex == (int)Math.Floor(inDto.RowNumber) &&
|
||||
x.ReadingTableQuestionTrial.QuestionMark == QuestionMark.State &&
|
||||
|
@ -1119,7 +1119,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
}
|
||||
else if (state == TargetState.DiseaseProgression.GetEnumInt())
|
||||
{
|
||||
await _readingTableQuestionAnswerRepository.UpdatePartialFromQueryAsync(x =>
|
||||
await _readingTableQuestionAnswerRepository.BatchUpdateNoTrackingAsync(x =>
|
||||
x.VisitTaskId == inDto.VisitTaskId &&
|
||||
x.RowIndex == (int)Math.Floor(inDto.RowNumber) &&
|
||||
x.ReadingTableQuestionTrial.QuestionMark == QuestionMark.State &&
|
||||
|
|
Loading…
Reference in New Issue