Skip to content

Commit

Permalink
fix: problema na listagem de acompanhamento especial com marcadores
Browse files Browse the repository at this point in the history
  • Loading branch information
caduvieira committed Mar 7, 2024
1 parent 7a52da3 commit 1143ceb
Showing 1 changed file with 16 additions and 13 deletions.
29 changes: 16 additions & 13 deletions src/rn/MdWsSeiAcompanhamentoRN.php
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ protected function listaAcompanhamentosUnidadeConectado(AcompanhamentoDTO $acomp
$procedimentoDTO = $acompanhamentoDTO->getObjProcedimentoDTO();
$anotacaoDTO = $procedimentoDTO->getObjAnotacaoDTO();
$andamentoSituacaoDTO = $procedimentoDTO->getObjAndamentoSituacaoDTO();
$andamentoMarcadorDTO = $procedimentoDTO->getArrObjAndamentoMarcadorDTO();
$arrAndamentoMarcadorDTO = $procedimentoDTO->getArrObjAndamentoMarcadorDTO();



Expand Down Expand Up @@ -263,19 +263,22 @@ protected function listaAcompanhamentosUnidadeConectado(AcompanhamentoDTO $acomp
'gerenciarSituacao' => SessaoSEI::getInstance()->verificarPermissao('andamento_situacao_gerenciar')
);
}
if($andamentoMarcadorDTO){

$arrAndamentoMarcador = array(
'marcador' => MarcadorINT::formatarMarcadorDesativado(
$andamentoMarcadorDTO->getStrNomeMarcador(),
$andamentoMarcadorDTO->getStrSinAtivoMarcador()
),
'idCor' => $andamentoMarcadorDTO->getStrStaIconeMarcador(),
'ativo' => $andamentoMarcadorDTO->getStrSinAtivoMarcador(),
'descricaoCor' => $arrIconeMarcadorDTO[$andamentoMarcadorDTO->getStrStaIconeMarcador()]->getStrDescricao(),
'gerenciarMarcador' => SessaoSEI::getInstance()->verificarPermissao('andamento_marcador_gerenciar'),
'arquivoCor' => $arrIconeMarcadorDTO[$andamentoMarcadorDTO->getStrStaIconeMarcador()]->getStrArquivo()
if($arrAndamentoMarcadorDTO){
$arrAndamentoMarcador = array();

foreach ($arrAndamentoMarcadorDTO as $andamentoMarcadorDTO){
$arrAndamentoMarcador[] = array(
'marcador' => MarcadorINT::formatarMarcadorDesativado(
$andamentoMarcadorDTO->getStrNomeMarcador(),
$andamentoMarcadorDTO->getStrSinAtivoMarcador()
),
'idCor' => $andamentoMarcadorDTO->getStrStaIconeMarcador(),
'ativo' => $andamentoMarcadorDTO->getStrSinAtivoMarcador(),
'descricaoCor' => $arrIconeMarcadorDTO[$andamentoMarcadorDTO->getStrStaIconeMarcador()]->getStrDescricao(),
'gerenciarMarcador' => SessaoSEI::getInstance()->verificarPermissao('andamento_marcador_gerenciar'),
'arquivoCor' => $arrIconeMarcadorDTO[$andamentoMarcadorDTO->getStrStaIconeMarcador()]->getStrArquivo()
);
}
}

$result[] = array(
Expand Down

0 comments on commit 1143ceb

Please sign in to comment.