Commit 99facf92f5f7bc6f049bc3262ccaf232db205ae2
1 parent
77e5f16b
Exists in
master
and in
1 other branch
[Feat] Adicionando parametro de quantidade de documentos por pasta.
Showing
1 changed file
with
2 additions
and
0 deletions
Show diff stats
rn/MdWsSeiProcedimentoRN.php
... | ... | @@ -610,10 +610,12 @@ class MdWsSeiProcedimentoRN extends InfraRN |
610 | 610 | if($protocoloDTO->getStrStaNivelAcessoGlobal() == ProtocoloRN::$NA_SIGILOSO){ |
611 | 611 | $podeGerenciarCredenciais = SessaoSEI::getInstance()->verificarPermissao('procedimento_credencial_gerenciar') ? 'S' : 'N'; |
612 | 612 | } |
613 | + $objInfraParametro = new InfraParametro(BancoSEI::getInstance()); | |
613 | 614 | |
614 | 615 | $result[] = array( |
615 | 616 | 'id' => $protocoloDTO->getDblIdProtocolo(), |
616 | 617 | 'status' => $protocoloDTO->getStrStaProtocolo(), |
618 | + 'seiNumMaxDocsPasta' => $objInfraParametro->getValor('SEI_NUM_MAX_DOCS_PASTA'), | |
617 | 619 | 'atributos' => array( |
618 | 620 | 'idProcedimento' => $protocoloDTO->getDblIdProtocolo(), |
619 | 621 | 'idProtocolo' => $protocoloDTO->getDblIdProtocolo(), | ... | ... |