From f30113a9116cf91fb1c2a6a41486c19904b8d93a Mon Sep 17 00:00:00 2001 From: Gustavo274 <51173319+Gustavo274@users.noreply.github.com> Date: Wed, 1 Dec 2021 11:13:38 -0300 Subject: [PATCH] =?UTF-8?q?Altera=C3=A7ao=20no=20resultado=5Fvotacao=20(#3?= =?UTF-8?q?487)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Gustavo Santos --- sapl/base/templatetags/common_tags.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/sapl/base/templatetags/common_tags.py b/sapl/base/templatetags/common_tags.py index c54c57e0e..f5b9c2c36 100644 --- a/sapl/base/templatetags/common_tags.py +++ b/sapl/base/templatetags/common_tags.py @@ -112,9 +112,9 @@ def paginacao_limite_superior(pagina): @register.filter def resultado_votacao(materia): - ra = materia.registrovotacao_set.first() - rb = materia.retiradapauta_set.first() - rl = materia.registroleitura_set.first() + ra = materia.registrovotacao_set.last() + rb = materia.retiradapauta_set.last() + rl = materia.registroleitura_set.last() if ra: resultado = ra.tipo_resultado_votacao.nome @@ -122,8 +122,6 @@ def resultado_votacao(materia): resultado = rb.tipo_de_retirada.descricao elif rl: resultado = "Matéria lida" - elif materia.ordemdia_set.exists() or materia.expedientemateria_set.exists(): - resultado = "Matéria não apreciada" else: resultado = "" return resultado