Skip to content

Commit

Permalink
Merge branch 'dev' into feat/create_concept
Browse files Browse the repository at this point in the history
  • Loading branch information
igorgoncalves authored Dec 23, 2024
2 parents 53f039c + 2948318 commit 891e8ef
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## [Versão 3.93.210]
- Ordem das etapas ajustada no relatório de Matrículas Anuais

## [Versão 3.94.209]
- Criando o formulário de notas por conceito na tela na sessão de administrador, permitindo a criação de um novo conceito e também modificar conceitos existentes
Expand Down
2 changes: 1 addition & 1 deletion app/controllers/ReportsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ public function actionEnrollmentStatisticsByYearReport()
{
// Construíndo condicionais e definindo ordenação para a consulta
$criteria = new CDbCriteria;
$criteria->order = 'name ASC';
$criteria->order = 'edcenso_stage_vs_modality_fk, name ASC';
$criteria->condition = "school_year = :year";
$criteria->params = array("year" => Yii::app()->user->year);
//Consulta todas as classes abertas no ano atual
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.94.209');
define("TAG_VERSION", '3.94.210');

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 891e8ef

Please sign in to comment.