|
@ -3,6 +3,7 @@ from collections import OrderedDict |
|
|
from datetime import datetime |
|
|
from datetime import datetime |
|
|
from re import sub |
|
|
from re import sub |
|
|
import logging |
|
|
import logging |
|
|
|
|
|
from urllib.request import parse_keqv_list |
|
|
|
|
|
|
|
|
from django.conf import settings |
|
|
from django.conf import settings |
|
|
from django.contrib import messages |
|
|
from django.contrib import messages |
|
@ -117,10 +118,10 @@ def verifica_presenca(request, model, spk, is_leitura=False): |
|
|
return True |
|
|
return True |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def verifica_votacoes_abertas(request): |
|
|
def verifica_votacoes_abertas(request, pk): |
|
|
votacoes_abertas = SessaoPlenaria.objects.filter( |
|
|
votacoes_abertas = SessaoPlenaria.objects.filter( |
|
|
Q(ordemdia__votacao_aberta=True) | |
|
|
(Q(ordemdia__votacao_aberta=True) | Q(ordemdia__discussao_aberta=True) & ~Q(ordemdia__id=int(pk))) | |
|
|
Q(expedientemateria__votacao_aberta=True)).distinct() |
|
|
(Q(expedientemateria__votacao_aberta=True) | Q(expedientemateria__discussao_aberta=True) & ~Q(expedientemateria__id=int(pk)))).distinct() |
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__) |
|
|
logger = logging.getLogger(__name__) |
|
|
|
|
|
|
|
@ -185,8 +186,14 @@ def abrir_votacao(request, pk, spk): |
|
|
materia_votacao = model.objects.get(id=pk) |
|
|
materia_votacao = model.objects.get(id=pk) |
|
|
is_leitura = materia_votacao.tipo_votacao == 4 |
|
|
is_leitura = materia_votacao.tipo_votacao == 4 |
|
|
if (verifica_presenca(request, presenca_model, spk, is_leitura) and |
|
|
if (verifica_presenca(request, presenca_model, spk, is_leitura) and |
|
|
verifica_votacoes_abertas(request) and |
|
|
verifica_votacoes_abertas(request, pk) and |
|
|
verifica_sessao_iniciada(request, spk, is_leitura)): |
|
|
verifica_sessao_iniciada(request, spk, is_leitura)): |
|
|
|
|
|
if 'discutir' in request.GET: |
|
|
|
|
|
materia_votacao.discussao_aberta = True |
|
|
|
|
|
else: |
|
|
|
|
|
if materia_votacao.discussao_aberta == True: |
|
|
|
|
|
materia_votacao.discussao_aberta = False |
|
|
|
|
|
if 'cancelar_discussao' not in request.GET: |
|
|
materia_votacao.votacao_aberta = True |
|
|
materia_votacao.votacao_aberta = True |
|
|
sessao = SessaoPlenaria.objects.get(id=spk) |
|
|
sessao = SessaoPlenaria.objects.get(id=spk) |
|
|
sessao.painel_aberto = True |
|
|
sessao.painel_aberto = True |
|
@ -325,7 +332,7 @@ def customize_link_materia(context, pk, has_permission, is_expediente): |
|
|
if obj.tipo_votacao != LEITURA: |
|
|
if obj.tipo_votacao != LEITURA: |
|
|
btn_registrar = ''' |
|
|
btn_registrar = ''' |
|
|
<form action="%s"> |
|
|
<form action="%s"> |
|
|
<input type="submit" class="btn btn-primary" |
|
|
<input type="submit" class="btn btn-primary btn-block" |
|
|
value="Registrar Votação" /> |
|
|
value="Registrar Votação" /> |
|
|
%s |
|
|
%s |
|
|
</form>''' % ( |
|
|
</form>''' % ( |
|
@ -333,7 +340,7 @@ def customize_link_materia(context, pk, has_permission, is_expediente): |
|
|
else: |
|
|
else: |
|
|
btn_registrar = ''' |
|
|
btn_registrar = ''' |
|
|
<form action="%s"> |
|
|
<form action="%s"> |
|
|
<input type="submit" class="btn btn-primary" |
|
|
<input type="submit" class="btn btn-primary btn-block" |
|
|
value="Registrar Leitura" /> |
|
|
value="Registrar Leitura" /> |
|
|
%s |
|
|
%s |
|
|
</form>''' % ( |
|
|
</form>''' % ( |
|
@ -363,17 +370,31 @@ def customize_link_materia(context, pk, has_permission, is_expediente): |
|
|
|
|
|
|
|
|
if has_permission: |
|
|
if has_permission: |
|
|
if not obj.tipo_votacao == LEITURA: |
|
|
if not obj.tipo_votacao == LEITURA: |
|
|
|
|
|
if obj.discussao_aberta != True: |
|
|
|
|
|
btn_abrir = ''' |
|
|
|
|
|
Matéria não votada<br /> |
|
|
|
|
|
<a href="%s" |
|
|
|
|
|
class="btn btn-primary btn-block" |
|
|
|
|
|
role="button" style="white-space : nowrap;">Abrir Discussão</a> |
|
|
|
|
|
<a href="%s" |
|
|
|
|
|
class="btn btn-primary btn-block" |
|
|
|
|
|
role="button" style="white-space : nowrap;">Abrir Votação</a>''' % (url + '&discutir=True', url) |
|
|
|
|
|
resultado = btn_abrir |
|
|
|
|
|
else: |
|
|
btn_abrir = ''' |
|
|
btn_abrir = ''' |
|
|
Matéria não votada<br /> |
|
|
Matéria não votada<br /> |
|
|
<a href="%s" |
|
|
<a href="%s" |
|
|
class="btn btn-primary" |
|
|
class="btn btn-danger btn-block" |
|
|
role="button">Abrir Votação</a>''' % (url) |
|
|
role="button" style="white-space : nowrap;">Cancelar Discussão</a> |
|
|
|
|
|
<a href="%s" |
|
|
|
|
|
class="btn btn-primary btn-block" |
|
|
|
|
|
role="button">Abrir Votação</a>''' % (url + '&cancelar_discussao=True', url) |
|
|
resultado = btn_abrir |
|
|
resultado = btn_abrir |
|
|
else: |
|
|
else: |
|
|
btn_abrir = ''' |
|
|
btn_abrir = ''' |
|
|
Matéria não lida<br /> |
|
|
Matéria não lida<br /> |
|
|
<a href="%s" |
|
|
<a href="%s" |
|
|
class="btn btn-primary" |
|
|
class="btn btn-primary btn-block" |
|
|
role="button">Abrir para Leitura</a>''' % (url) |
|
|
role="button">Abrir para Leitura</a>''' % (url) |
|
|
resultado = btn_abrir |
|
|
resultado = btn_abrir |
|
|
else: |
|
|
else: |
|
|