Browse Source
Alteraçao no resultado_votacao (#3487)
Co-authored-by: Gustavo Santos <gustavo@DESKTOP-JVUD0SL.localdomain>
pull/3482/head
Gustavo274
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
5 deletions
-
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 |
|
|
|