Skip to content

Commit

Permalink
Ordenando de acordo com a ordem da turma o relatório de ata de notas (#…
Browse files Browse the repository at this point in the history
…900)

Co-authored-by: TI GUSTAVO <ti.gustavo@thp.org.br>
  • Loading branch information
Gusta-Santos and TI GUSTAVO authored Dec 19, 2024
1 parent 893db24 commit b7bbf14
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@

## [Versão 3.93.211]
- Ordenando de acordo com a ordem da turma o relatório de ata de notas

## [Versão 3.93.210]
- Corrigindo a busca por aulas em aulas ministradas quando o usuário é um professor da educação infantil

Expand Down
2 changes: 1 addition & 1 deletion app/repository/FormsRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,7 @@ public function getAtaSchoolPerformance($classroomId) : array

$totalDisciplines = array_merge($baseDisciplines, $diversifiedDisciplines);

$studentEnrollments = StudentEnrollment::model()->findAllByAttributes(array('classroom_fk' => $classroom->id));
$studentEnrollments = $classroom->studentEnrollments;

$grades = [];

Expand Down
2 changes: 1 addition & 1 deletion config.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
defined('YII_DEBUG') or define('YII_DEBUG', $debug);
defined("SESSION_MAX_LIFETIME") or define('SESSION_MAX_LIFETIME', 3600);

define("TAG_VERSION", '3.93.210');
define("TAG_VERSION", '3.93.211');

define("YII_VERSION", Yii::getVersion());
define("BOARD_MSG", '<div class="alert alert-success">Novas atualizações no TAG. Confira clicando <a class="changelog-link" href="?r=admin/changelog">aqui</a>.</div>');
Expand Down

0 comments on commit b7bbf14

Please sign in to comment.