Skip to content

Commit

Permalink
Merge pull request #14 from anatelgovbr/utilidades_versao_2.2.1
Browse files Browse the repository at this point in the history
Versão intermediária 2.2.1
  • Loading branch information
gabriel9nc authored Nov 6, 2024
2 parents 97ddd63 + 5ec5d7f commit 7efb5cb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 23 deletions.
11 changes: 1 addition & 10 deletions sei/scripts/sei_atualizar_versao_modulo_utilidades.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,6 @@ protected function finalizar($strMsg = null, $bolErro = false)
die;
}

protected function normalizaVersao($versao)
{
$ultimoPonto = strrpos($versao, '.');
if ($ultimoPonto !== false) {
$versao = substr($versao, 0, $ultimoPonto) . substr($versao, $ultimoPonto + 1);
}
return $versao;
}

protected function atualizarVersaoConectado()
{

Expand All @@ -95,7 +86,7 @@ protected function atualizarVersaoConectado()

//testando versao do framework
$numVersaoInfraRequerida = '2.0.18';
if ($this->normalizaVersao(VERSAO_INFRA) < $this->normalizaVersao($numVersaoInfraRequerida)) {
if (version_compare(VERSAO_INFRA, $numVersaoInfraRequerida) < 0) {
$this->finalizar('VERSÃO DO FRAMEWORK PHP INCOMPATÍVEL (VERSÃO ATUAL ' . VERSAO_INFRA . ', SENDO REQUERIDA VERSÃO IGUAL OU SUPERIOR A ' . $numVersaoInfraRequerida . ')', true);
}

Expand Down
2 changes: 1 addition & 1 deletion sei/web/modulos/utilidades/UtilidadesIntegracao.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function getNome()
public function getVersao()
{

return '2.2.0';
return '2.2.1';
}

public function getInstituicao()
Expand Down
2 changes: 1 addition & 1 deletion sei/web/modulos/utilidades/int/MdUtlControleDsmpINT.php
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ public static function montarSelectPeriodoAnalise($idTipoControleDesempenho, $id
}
$select = '<option value=""></option>';
$vlSelecionado = $periodoInicialSelecionado."|".$periodoFinalSelecionado;
$numLimitador = 15;
$numLimitador = 180;
$arrPeriodosSelecionado = [];
foreach ($periodo as $key => $parametros) {
$periodoExplodido = explode("(", $parametros);
Expand Down
13 changes: 2 additions & 11 deletions sip/scripts/sip_atualizar_versao_modulo_utilidades.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,6 @@ protected function finalizar($strMsg = null, $bolErro = false)
die;
}

protected function normalizaVersao($versao)
{
$ultimoPonto = strrpos($versao, '.');
if ($ultimoPonto !== false) {
$versao = substr($versao, 0, $ultimoPonto) . substr($versao, $ultimoPonto + 1);
}
return $versao;
}

protected function atualizarVersaoConectado()
{

Expand All @@ -102,8 +93,8 @@ protected function atualizarVersaoConectado()

//testando versao do framework
$numVersaoInfraRequerida = '2.0.18';
if ($this->normalizaVersao(VERSAO_INFRA) < $this->normalizaVersao($numVersaoInfraRequerida)) {
$this->finalizar('VERSÃO DO FRAMEWORK PHP INCOMPATÍVEL (VERSÃO ATUAL ' . VERSAO_INFRA . ', SENDO REQUERIDA VERSÃO IGUAL OU SUPERIOR A ' . $numVersaoInfraRequerida . ')', true);
if (version_compare(VERSAO_INFRA, $numVersaoInfraRequerida) < 0) {
$this->finalizar('VERSÃO DO FRAMEWORK PHP INCOMPATÍVEL (VERSÃO ATUAL ' . VERSAO_INFRA . ', SENDO REQUERIDA VERSÃO IGUAL OU SUPERIOR A ' . $numVersaoInfraRequerida . ')', true);
}

//checando permissoes na base de dados
Expand Down

0 comments on commit 7efb5cb

Please sign in to comment.