Skip to content

Commit

Permalink
DOC: Corrigindo para não aparecer o botão Concluir após desentranhamento
Browse files Browse the repository at this point in the history
de juntada a documento externo
  • Loading branch information
adrigrassi committed May 23, 2024
1 parent 8d578e3 commit 7a48fc7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public static Pendencias calcularTramitesPendentes(ExMobil mobil) {
p.recebimentosPendentes.add(mov);
}
// A juntada deve desativar os trâmites que não sejam de notificação
if (t == ExTipoDeMovimentacao.JUNTADA) {
if (t == ExTipoDeMovimentacao.JUNTADA || t == ExTipoDeMovimentacao.JUNTADA_A_DOCUMENTO_EXTERNO) {
p.tramitesPendentes.removeIf(mv -> mv.getExTipoMovimentacao() != ExTipoDeMovimentacao.NOTIFICACAO);
p.recebimentosPendentes.removeIf(mv -> mv.getExTipoMovimentacao() != ExTipoDeMovimentacao.NOTIFICACAO);
}
Expand Down

0 comments on commit 7a48fc7

Please sign in to comment.