Skip to content

Commit

Permalink
chore: inclusão de validação de permissão para excluir bloco
Browse files Browse the repository at this point in the history
  • Loading branch information
Mauro1706 authored and root committed Jul 7, 2023
1 parent ce6b29a commit 80764fe
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/rn/TramiteEmBlocoRN.php
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,9 @@ protected function alterarControlado(TramiteEmBlocoDTO $objTramiteEmBlocoDTO){
protected function excluirControlado(array $arrayObjDTO)
{
try {
//Valida Permissao
SessaoSEI::getInstance()->validarAuditarPermissao('pen_tramite_em_bloco_excluir',__METHOD__,$arrayObjDTO);

$arrayExcluido = array();
foreach ($arrayObjDTO as $objDTO) {
$objBD = new TramiteEmBlocoBD(BancoSEI::getInstance());
Expand Down

0 comments on commit 80764fe

Please sign in to comment.