From d42b069b0fa7352caa05f730bb53d49182715dd7 Mon Sep 17 00:00:00 2001 From: ulyssesBML Date: Fri, 6 Nov 2020 10:28:09 -0300 Subject: [PATCH] Corrigindo inconsistencia nas materias apresentadas --- sapl/templates/sessao/votacao/votacao_bloco.html | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/sapl/templates/sessao/votacao/votacao_bloco.html b/sapl/templates/sessao/votacao/votacao_bloco.html index a1b997249..56dc4b3d9 100644 --- a/sapl/templates/sessao/votacao/votacao_bloco.html +++ b/sapl/templates/sessao/votacao/votacao_bloco.html @@ -45,7 +45,7 @@ {% for o in object_list %} {% if o.tipo_votacao == 1 or o.tipo_votacao == 2 or o.tipo_votacao == 4 %} - 1 %} style="display:none;" {% endif %}> + {{o.materia.tipo.sigla}} {{o.materia.numero}}/{{o.materia.ano}} - {{o.materia.tipo}}
@@ -182,13 +182,20 @@ $("#but_reg").text("Registrar Votação") if(tipo_votacao == "1"){ $('#form').attr("action", "{% url 'sapl.sessao:votacaoblocosimb' pk %}") + //document.querySelectorAll('tr[class="Leitura"]').map((obj) -> {obj.style.display='none'}); + Array.from(document.querySelectorAll('tr[class="Leitura"]')).map(function(obj){obj.style.display='none'}); + Array.from(document.querySelectorAll('tr[class="Nominal"]')).map(function(obj){obj.style.display='none'}); } else if(tipo_votacao == "2"){ $('#form').attr("action", "{% url 'sapl.sessao:votacaobloconom' pk %}") + Array.from(document.querySelectorAll('tr[class="Simbolica"]')).map(function(obj){obj.style.display='none'}); + Array.from(document.querySelectorAll('tr[class="Leitura"]')).map(function(obj){obj.style.display='none'}); } else{ $("#but_reg").text("Registrar Leitura") $('#form').attr("action", "{% url 'sapl.sessao:leitura_em_bloco' pk %}") + Array.from(document.querySelectorAll('tr[class="Simbolica"]')).map(function(obj){obj.style.display='none'}); + Array.from(document.querySelectorAll('tr[class="Nominal"]')).map(function(obj){obj.style.display='none'}); } }