From 39a28c2089b9d1d428009b166c413201164fb91d Mon Sep 17 00:00:00 2001 From: Thiago Marquesini Date: Tue, 24 Jul 2018 09:00:17 -0300 Subject: [PATCH] =?UTF-8?q?Adiciona=20numeroClasse=20como=20campo=20obriga?= =?UTF-8?q?t=C3=B3rio=20para=20atender=20a=20atualiza=C3=A7=C3=B5es=20da?= =?UTF-8?q?=20SED?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Repository/GradesRepository.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Repository/GradesRepository.php b/src/Repository/GradesRepository.php index 89e7cef..f6b3e92 100644 --- a/src/Repository/GradesRepository.php +++ b/src/Repository/GradesRepository.php @@ -69,7 +69,8 @@ public function getPage(School $school) $data = [ 'anoLetivo' => date('Y'), 'codigoEscola' => $school->getCode(), - 'tipoPesquisa' => 1 + 'numeroClasse' => '', + 'tipoPesquisa' => 1, ]; $url = 'NCA/RelacaoAlunosClasse/PesquisaTurma'; @@ -92,4 +93,4 @@ public function extractCode(string $html) return false; } -} \ No newline at end of file +}