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

IRC_NewDev
he 2024-12-13 09:34:18 +08:00
parent 483c622fce
commit 5576b54518
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ namespace IRaCIS.Core.Application.Service
[HttpPost]
public async Task<GetTrialQuestionExportResultOutDto> GetTrialQuestionExportResult(GetTrialQuestionExportResultInDto inDto)
{
var questionList = await _readingQuestionTrialRepository.Where(x => x.ReadingQuestionCriterionTrialId == inDto.TrialReadingCriterionId)
var questionList = await _readingQuestionTrialRepository.Where(x => x.Type!= ReadingQestionType.Group&& x.ReadingQuestionCriterionTrialId == inDto.TrialReadingCriterionId)
.OrderBy(x => x.ShowOrder).Select(x => new TrialQuestionExport()
{
QuestionId = x.Id,