From 05617b9f6dc3326e921c2c349fcdc3cd562d8639 Mon Sep 17 00:00:00 2001 From: Edward Oliveira Date: Thu, 21 Oct 2021 11:38:07 -0300 Subject: [PATCH] =?UTF-8?q?HOT-FIX:=20ajusta=20resultado=20de=20mat=C3=A9r?= =?UTF-8?q?ia?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sapl/base/templatetags/common_tags.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/sapl/base/templatetags/common_tags.py b/sapl/base/templatetags/common_tags.py index 18758a612..4a34ad646 100644 --- a/sapl/base/templatetags/common_tags.py +++ b/sapl/base/templatetags/common_tags.py @@ -108,15 +108,18 @@ def paginacao_limite_superior(pagina): def resultado_votacao(materia): ra = materia.registrovotacao_set.first() rb = materia.retiradapauta_set.first() + rl = materia.registroleitura_set.first() + if ra: resultado = ra.tipo_resultado_votacao.nome elif rb: resultado = rb.tipo_de_retirada.descricao - elif materia.expedientemateria_set.filter(tipo_votacao=4).exists() or \ - materia.ordemdia_set.filter(tipo_votacao=4).exists(): + elif rl: resultado = "Matéria lida" + elif materia.ordemdia_set.exists() or materia.expedientemateria_set.exists(): + resultado = "Matéria não apreciada" else: - resultado = "Matéria não votada" + resultado = "" return resultado