Browse Source

fix #2595 (#2597)

pull/2601/head
Cesar Augusto de Carvalho 6 years ago
committed by Edward Ribeiro
parent
commit
401bff5c45
  1. 8
      sapl/sessao/views.py
  2. 2
      sapl/templates/sessao/votacao/votacao_bloco_expediente.html
  3. 2
      sapl/templates/sessao/votacao/votacao_bloco_ordem.html

8
sapl/sessao/views.py

@ -3342,17 +3342,16 @@ class VotacaoEmBlocoExpediente(PermissionRequiredForAppCrudMixin, ListView):
logger = logging.getLogger(__name__)
def get_queryset(self):
kwargs = self.kwargs
return ExpedienteMateria.objects.filter(sessao_plenaria_id=kwargs['pk'],
return ExpedienteMateria.objects.filter(sessao_plenaria_id=self.kwargs['pk'],
resultado='')
def get_context_data(self, **kwargs):
context = super(VotacaoEmBlocoExpediente,
self).get_context_data(**kwargs)
context['turno_choices'] = Tramitacao.TURNO_CHOICES
context['title'] = SessaoPlenaria.objects.get(id=self.kwargs['pk'])
context['pk'] = self.kwargs['pk']
context['root_pk'] = self.kwargs['pk']
context['title'] = SessaoPlenaria.objects.get(id=self.kwargs['pk'])
return context
@ -3393,7 +3392,8 @@ class VotacaoEmBlocoSimbolicaView(PermissionRequiredForAppCrudMixin, TemplateVie
context = {'pk': self.kwargs['pk'],
'root_pk': self.kwargs['pk'],
'title': SessaoPlenaria.objects.get(id=self.kwargs['pk']),
'origem': request.POST['origem']
'origem': request.POST['origem'],
'subnav_template_name': 'sessao/subnav.yaml'
}
if 'marcadas_1' in request.POST:

2
sapl/templates/sessao/votacao/votacao_bloco_expediente.html

@ -40,6 +40,7 @@
</div>
{% for o in expedientes %}
{% if o.tipo_votacao == 1 or o.tipo_votacao == 2 %}
<tr class="{% if o.tipo_votacao == 1 %}Simbolica{% else %}Nominal{% endif %}" {% if o.tipo_votacao == 2 %} style="display:none;" {% endif %}>
<td>
<input type="checkbox" name="marcadas_{{o.tipo_votacao}}" id="{{o.id}}" value="{{o.id}}" {% if check %} checked {% endif %}>
@ -73,6 +74,7 @@
<p></p>
</td>
</tr>
{% endif %}
{% endfor %}
</table>

2
sapl/templates/sessao/votacao/votacao_bloco_ordem.html

@ -40,6 +40,7 @@
</div>
{% for o in ordem_dia %}
{% if o.tipo_votacao == 1 or o.tipo_votacao == 2 %}
<tr class="{% if o.tipo_votacao == 1 %}Simbolica{% else %}Nominal{% endif %}" {% if o.tipo_votacao == 2 %} style="display:none;" {% endif %}>
<td>
<input type="checkbox" name="marcadas_{{o.tipo_votacao}}" id="{{o.id}}" value="{{o.id}}" {% if check %} checked {% endif %}>
@ -73,6 +74,7 @@
<p></p>
</td>
</tr>
{% endif %}
{% endfor %}
</table>

Loading…
Cancel
Save