修改pcwg 判断
continuous-integration/drone/push Build is passing Details

Test_IRC_Net8
hang 2025-07-02 16:43:23 +08:00
parent f8ba3019e6
commit 8f5d391c0d
1 changed files with 4 additions and 4 deletions

View File

@ -1090,7 +1090,7 @@ namespace IRaCIS.Core.Application.Service
var list = await _readingTableQuestionAnswerRepository.Where(x => x.VisitTaskId == visitTaskId &&
x.ReadingTableQuestionTrial.QuestionMark == QuestionMark.LesionNumber && x.ReadingQuestionTrial.LesionType == LesionType.BaselineLesions).Select(t => t.Answer).ToListAsync();
bool exists = list.Any(s => int.TryParse(s, out var n) && n > 100);
bool exists = list.Any(s => int.TryParse(s, out var n) && n >= 1);
if (exists)
{
enrollAnswer = _userInfo.IsEn_Us ? "Yes" : "是";