Skip to content

Commit

Permalink
fix: tela de processo apresenta todos os ícones.
Browse files Browse the repository at this point in the history
Não estava apresentando todos os ícones no tramita. Somente o último estava sendo apresentado.
  • Loading branch information
caduvieira committed Sep 15, 2023
1 parent c0b288a commit 1346029
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions src/PENIntegracao.php
Original file line number Diff line number Diff line change
Expand Up @@ -231,15 +231,30 @@ private function montarIconeTramite($arrDblIdProcedimento = array(), $arrStrIcon
if (!empty($ObjAtividadeDTO)) {
switch ($ObjAtividadeDTO->getNumIdTarefa()) {
case ProcessoEletronicoRN::obterIdTarefaModulo(ProcessoEletronicoRN::$TI_PROCESSO_ELETRONICO_PROCESSO_EXPEDIDO):
$arrStrIcone[$dblIdProcedimento] = array('<img src="' . $this->getDiretorioImagens() . '/icone-ENVIADO-tramita.png" title="Um trâmite para esse processo foi envidado" />');
$arrayIcone = array('<img src="' . $this->getDiretorioImagens() . '/icone-ENVIADO-tramita.png" title="Um trâmite para esse processo foi enviado" />');
if (!isset($arrStrIcone[$dblIdProcedimento])) {
$arrStrIcone[$dblIdProcedimento] = $arrayIcone;
} else {
$arrStrIcone[$dblIdProcedimento] = array_merge($arrStrIcone[$dblIdProcedimento], $arrayIcone);
}
break;
case ProcessoEletronicoRN::obterIdTarefaModulo(ProcessoEletronicoRN::$TI_PROCESSO_ELETRONICO_PROCESSO_RECEBIDO):
$arrStrIcone[$dblIdProcedimento] = array('<img src="' . $this->getDiretorioImagens() . '/icone-RECEBIDO-tramita.png" title="Um trâmite para esse processo foi recebido" />');
$arrayIcone = array('<img src="' . $this->getDiretorioImagens() . '/icone-RECEBIDO-tramita.png" title="Um trâmite para esse processo foi recebido" />');
if (!isset($arrStrIcone[$dblIdProcedimento])) {
$arrStrIcone[$dblIdProcedimento] = $arrayIcone;
} else {
$arrStrIcone[$dblIdProcedimento] = array_merge($arrStrIcone[$dblIdProcedimento], $arrayIcone);
}
break;
case ProcessoEletronicoRN::obterIdTarefaModulo(ProcessoEletronicoRN::$TI_PROCESSO_ELETRONICO_PROCESSO_TRAMITE_CANCELADO):
case ProcessoEletronicoRN::obterIdTarefaModulo(ProcessoEletronicoRN::$TI_PROCESSO_ELETRONICO_PROCESSO_ABORTADO):
if ($this->consultarProcessoRecebido($dblIdProcedimento)) {
$arrStrIcone[$dblIdProcedimento] = array('<img src="' . $this->getDiretorioImagens() . '/icone-RECEBIDO-tramita.png" title="Um trâmite para esse processo foi recebido" />');
$arrayIcone = array('<img src="' . $this->getDiretorioImagens() . '/icone-RECEBIDO-tramita.png" title="Um trâmite para esse processo foi recebido" />');
if (!isset($arrStrIcone[$dblIdProcedimento])) {
$arrStrIcone[$dblIdProcedimento] = $arrayIcone;
} else {
$arrStrIcone[$dblIdProcedimento] = array_merge($arrStrIcone[$dblIdProcedimento], $arrayIcone);
}
}
break;
default:
Expand Down

0 comments on commit 1346029

Please sign in to comment.