Skip to content

Commit

Permalink
Merge pull request #14782 from prefeiturasp/fix/123301
Browse files Browse the repository at this point in the history
123301 - Ajuste sinalizador hipotese de escrita
  • Loading branch information
Jailsvs authored Jul 26, 2024
2 parents c258b55 + cf8b66e commit 325a2c9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Intrinsics.X86;
using System.Threading;
using System.Threading.Tasks;

Expand All @@ -22,7 +23,7 @@ public class ObterCodigosAlunosSinalizadosPrioridadeMapeamentoEstudanteQueryHand
private readonly IMediator mediator;
private readonly IRepositorioMapeamentoEstudante repositorioMapeamento;

private const string HIPOTESE_ESCRITA_ALFABETICO = "A";
private readonly string[] HIPOTESES_ESCRITA_NAO_ALFABETICAS = new string[] { "PS", "SSV", "SCV", "SA" };
private const string RESULTADO_ABAIXO_BASICO_PROVA_SP = "Abaixo do básico";

public ObterCodigosAlunosSinalizadosPrioridadeMapeamentoEstudanteQueryHandler(IRepositorioPlanoAEE repositorioPlanoAEE,
Expand Down Expand Up @@ -56,8 +57,7 @@ public async Task<AlunoSinalizadoPrioridadeMapeamentoEstudanteDto[]> Handle(Obte
{
var sondagem = await mediator.Send(new ObterSondagemLPAlunoQuery(turma.CodigoTurma, aluno.CodigoAluno));
var avaliacoesExternasProvaSP = await mediator.Send(new ObterAvaliacoesExternasProvaSPAlunoQuery(aluno.CodigoAluno, turma.AnoLetivo-1));
if (sondagem.ObterHipoteseEscrita(request.Bimestre) != HIPOTESE_ESCRITA_ALFABETICO
&& !string.IsNullOrEmpty(sondagem.ObterHipoteseEscrita(request.Bimestre)))
if (HIPOTESES_ESCRITA_NAO_ALFABETICAS.Contains(sondagem.ObterHipoteseEscrita(request.Bimestre)))
alunosSondagemInsuficiente.Add(aluno.CodigoAluno);
if (avaliacoesExternasProvaSP.Any(psp => psp.Nivel.ToUpper() == RESULTADO_ABAIXO_BASICO_PROVA_SP.ToUpper()))
alunosProvaSPInsuficiente.Add(aluno.CodigoAluno);
Expand Down

0 comments on commit 325a2c9

Please sign in to comment.