From 59022bf413e5fc0de583b3af78c6827bd4b5a263 Mon Sep 17 00:00:00 2001 From: Matheus Marques Date: Tue, 3 Oct 2023 20:26:27 -0300 Subject: [PATCH] fix: Foi ajustado a Unidade do PEN (Estruturas Organizacionais) antes de realizar o tramite do protocolo. --- tests_super/funcional/tests/CenarioBaseTestCase.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests_super/funcional/tests/CenarioBaseTestCase.php b/tests_super/funcional/tests/CenarioBaseTestCase.php index cca861416..b67b7367d 100755 --- a/tests_super/funcional/tests/CenarioBaseTestCase.php +++ b/tests_super/funcional/tests/CenarioBaseTestCase.php @@ -358,6 +358,10 @@ protected function tramitarProcessoExternamente($protocolo, $repositorio, $unida } protected function tramitarProcessoExternamenteGestorNaoResponsavelUnidade ($repositorio, $unidadeDestino, $unidadeDestinoHierarquia) { + + $bancoOrgaoA = new DatabaseUtils(CONTEXTO_ORGAO_A); + $bancoOrgaoA->execute("update md_pen_unidade set id_unidade_rh=? where id_unidade=?", array('151105', '110000001')); + // Acessar funcionalidade de trāmite externo try { $this->paginaTramitarProcessoEmLote->navegarControleProcessos(); @@ -398,6 +402,7 @@ protected function tramitarProcessoExternamenteGestorNaoResponsavelUnidade ($rep } } + $bancoOrgaoA->execute("update md_pen_unidade set id_unidade_rh=? where id_unidade=?", array(CONTEXTO_ORGAO_A_ID_ESTRUTURA, '110000001')); } protected function tramitarProcessoInternamente($unidadeDestino)