|
|
|
from datetime import datetime
|
|
|
|
from random import choice
|
|
|
|
from re import sub
|
|
|
|
from string import ascii_letters, digits
|
|
|
|
|
|
|
|
from django.contrib import messages
|
|
|
|
from django.core.exceptions import ObjectDoesNotExist
|
|
|
|
from django.core.mail import send_mail
|
|
|
|
from django.core.urlresolvers import reverse
|
|
|
|
from django.http.response import HttpResponseRedirect
|
|
|
|
from django.shortcuts import redirect
|
|
|
|
from django.template import Context, loader
|
|
|
|
from django.utils.html import strip_tags
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from django.views.generic import ListView, TemplateView
|
|
|
|
from django.views.generic.edit import FormMixin
|
|
|
|
from vanilla.views import GenericView
|
|
|
|
|
|
|
|
from base.models import CasaLegislativa
|
|
|
|
from comissoes.models import Comissao, Composicao
|
|
|
|
from compilacao.views import IntegracaoTaView
|
|
|
|
from crud import Crud, make_pagination
|
|
|
|
from norma.models import LegislacaoCitada, NormaJuridica, TipoNormaJuridica
|
|
|
|
from parlamentares.models import Partido
|
|
|
|
from sapl.utils import get_base_url
|
|
|
|
|
|
|
|
from .forms import (AcompanhamentoMateriaForm, AutoriaForm,
|
|
|
|
DespachoInicialForm, DocumentoAcessorioForm,
|
|
|
|
FormularioCadastroForm, FormularioSimplificadoForm,
|
|
|
|
LegislacaoCitadaForm, MateriaAnexadaForm,
|
|
|
|
MateriaLegislativaPesquisaForm, NumeracaoForm,
|
|
|
|
ProposicaoForm, RelatoriaForm, TramitacaoForm)
|
|
|
|
from .models import (AcompanhamentoMateria, Anexada, Autor, Autoria,
|
|
|
|
DespachoInicial, DocumentoAcessorio, MateriaLegislativa,
|
|
|
|
Numeracao, Orgao, Origem, Proposicao, RegimeTramitacao,
|
|
|
|
Relatoria, StatusTramitacao, TipoAutor, TipoDocumento,
|
|
|
|
TipoFimRelatoria, TipoMateriaLegislativa, TipoProposicao,
|
|
|
|
Tramitacao, UnidadeTramitacao)
|
|
|
|
|
|
|
|
origem_crud = Crud(Origem, 'origem')
|
|
|
|
tipo_materia_crud = Crud(TipoMateriaLegislativa, 'tipo_materia_legislativa')
|
|
|
|
regime_tramitacao_crud = Crud(RegimeTramitacao, 'regime_tramitacao')
|
|
|
|
tipo_documento_crud = Crud(TipoDocumento, 'tipo_documento')
|
|
|
|
tipo_fim_relatoria_crud = Crud(TipoFimRelatoria, 'fim_relatoria')
|
|
|
|
materia_legislativa_crud = Crud(MateriaLegislativa, '')
|
|
|
|
Anexada_crud = Crud(Anexada, '')
|
|
|
|
tipo_autor_crud = Crud(TipoAutor, 'tipo_autor')
|
|
|
|
autor_crud = Crud(Autor, 'autor')
|
|
|
|
autoria_crud = Crud(Autoria, '')
|
|
|
|
documento_acessorio_crud = Crud(DocumentoAcessorio, '')
|
|
|
|
numeracao_crud = Crud(Numeracao, '')
|
|
|
|
orgao_crud = Crud(Orgao, 'orgao')
|
|
|
|
relatoria_crud = Crud(Relatoria, '')
|
|
|
|
tipo_proposicao_crud = Crud(TipoProposicao, 'tipo_proposicao')
|
|
|
|
proposicao_crud = Crud(Proposicao, '')
|
|
|
|
status_tramitacao_crud = Crud(StatusTramitacao, 'status_tramitacao')
|
|
|
|
unidade_tramitacao_crud = Crud(UnidadeTramitacao, 'unidade_tramitacao')
|
|
|
|
tramitacao_crud = Crud(Tramitacao, '')
|
|
|
|
|
|
|
|
|
|
|
|
class FormularioSimplificadoView(FormMixin, GenericView):
|
|
|
|
template_name = "materia/formulario_simplificado.html"
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
return reverse('materialegislativa:list')
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
form = FormularioSimplificadoForm()
|
|
|
|
return self.render_to_response({'form': form})
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
form = FormularioSimplificadoForm(request.POST)
|
|
|
|
|
|
|
|
if form.is_valid:
|
|
|
|
materia = form.save(commit=False)
|
|
|
|
if 'texto_original' in request.FILES:
|
|
|
|
materia.texto_original = request.FILES['texto_original']
|
|
|
|
materia.save()
|
|
|
|
return self.form_valid(form)
|
|
|
|
else:
|
|
|
|
return self.form_invalid(form)
|
|
|
|
|
|
|
|
return self.render_to_response({'form': form})
|
|
|
|
|
|
|
|
|
|
|
|
class FormularioCadastroView(FormMixin, GenericView):
|
|
|
|
template_name = "materia/formulario_cadastro.html"
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
form = FormularioCadastroForm()
|
|
|
|
return self.render_to_response({'form': form})
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
form = FormularioCadastroForm(request.POST)
|
|
|
|
if form.is_valid():
|
|
|
|
form.save()
|
|
|
|
return self.form_valid(form)
|
|
|
|
else:
|
|
|
|
return self.form_invalid(form)
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
return reverse('formulario_cadastro')
|
|
|
|
|
|
|
|
|
|
|
|
class MateriaAnexadaView(FormMixin, GenericView):
|
|
|
|
template_name = "materia/materia_anexada.html"
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
form = MateriaAnexadaForm()
|
|
|
|
materia = MateriaLegislativa.objects.get(
|
|
|
|
id=kwargs['pk'])
|
|
|
|
anexadas = Anexada.objects.filter(
|
|
|
|
materia_principal_id=kwargs['pk'])
|
|
|
|
|
|
|
|
return self.render_to_response({'object': materia,
|
|
|
|
'anexadas': anexadas,
|
|
|
|
'form': form})
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
form = MateriaAnexadaForm(request.POST)
|
|
|
|
anexadas = Anexada.objects.filter(
|
|
|
|
materia_principal_id=kwargs['pk'])
|
|
|
|
mat_principal = MateriaLegislativa.objects.get(
|
|
|
|
id=kwargs['pk'])
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
tipo = form.cleaned_data['tipo']
|
|
|
|
numero = form.cleaned_data['numero']
|
|
|
|
ano = form.cleaned_data['ano']
|
|
|
|
data_anexacao = form.cleaned_data['data_anexacao']
|
|
|
|
|
|
|
|
if 'data_desanexacao' in request.POST:
|
|
|
|
data_desanexacao = form.cleaned_data['data_desanexacao']
|
|
|
|
|
|
|
|
try:
|
|
|
|
mat_anexada = MateriaLegislativa.objects.get(
|
|
|
|
numero=numero, ano=ano, tipo=tipo)
|
|
|
|
|
|
|
|
if mat_principal.tipo == mat_anexada.tipo:
|
|
|
|
|
|
|
|
msg = _('A matéria a ser anexada não pode ser do mesmo'
|
|
|
|
' tipo da matéria principal.')
|
|
|
|
messages.add_message(request, messages.INFO, msg)
|
|
|
|
return self.render_to_response(
|
|
|
|
{'form': form,
|
|
|
|
'materialegislativa': mat_principal,
|
|
|
|
'anexadas': anexadas})
|
|
|
|
|
|
|
|
anexada = Anexada()
|
|
|
|
anexada.materia_principal = mat_principal
|
|
|
|
anexada.materia_anexada = mat_anexada
|
|
|
|
anexada.data_anexacao = data_anexacao
|
|
|
|
|
|
|
|
if data_desanexacao:
|
|
|
|
anexada.data_desanexacao = data_desanexacao
|
|
|
|
|
|
|
|
anexada.save()
|
|
|
|
|
|
|
|
except ObjectDoesNotExist:
|
|
|
|
msg = _('A matéria a ser anexada não existe no cadastro'
|
|
|
|
' de matérias legislativas.')
|
|
|
|
messages.add_message(request, messages.INFO, msg)
|
|
|
|
return self.render_to_response(
|
|
|
|
{'form': form,
|
|
|
|
'materialegislativa': mat_principal,
|
|
|
|
'anexadas': anexadas})
|
|
|
|
|
|
|
|
return self.form_valid(form)
|
|
|
|
else:
|
|
|
|
return self.render_to_response(
|
|
|
|
{'form': form,
|
|
|
|
'materialegislativa': mat_principal,
|
|
|
|
'anexadas': anexadas})
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
pk = self.kwargs['pk']
|
|
|
|
return reverse('materia_anexada', kwargs={'pk': pk})
|
|
|
|
|
|
|
|
|
|
|
|
class MateriaAnexadaEditView(FormMixin, GenericView):
|
|
|
|
template_name = "materia/materia_anexada_edit.html"
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
anexada = Anexada.objects.get(id=kwargs['id'])
|
|
|
|
|
|
|
|
data = {}
|
|
|
|
data['tipo'] = anexada.materia_anexada.tipo
|
|
|
|
data['numero'] = anexada.materia_anexada.numero
|
|
|
|
data['ano'] = anexada.materia_anexada.ano
|
|
|
|
data['data_anexacao'] = anexada.data_anexacao
|
|
|
|
data['data_desanexacao'] = anexada.data_desanexacao
|
|
|
|
|
|
|
|
form = MateriaAnexadaForm(initial=data)
|
|
|
|
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'data': data,
|
|
|
|
'get_tipos_materia': TipoMateriaLegislativa.objects.all()})
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
|
|
|
|
form = MateriaAnexadaForm(request.POST)
|
|
|
|
anexada = Anexada.objects.get(id=kwargs['id'])
|
|
|
|
mat_principal = MateriaLegislativa.objects.get(
|
|
|
|
id=kwargs['pk'])
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
if 'excluir' in request.POST:
|
|
|
|
anexada.delete()
|
|
|
|
return self.form_valid(form)
|
|
|
|
elif 'salvar' in request.POST:
|
|
|
|
|
|
|
|
tipo = form.cleaned_data['tipo']
|
|
|
|
numero = form.cleaned_data['numero']
|
|
|
|
ano = form.cleaned_data['ano']
|
|
|
|
data_anexacao = form.cleaned_data['data_anexacao']
|
|
|
|
|
|
|
|
if 'data_desanexacao' in request.POST:
|
|
|
|
data_desanexacao = form.cleaned_data['data_desanexacao']
|
|
|
|
|
|
|
|
try:
|
|
|
|
mat_anexada = MateriaLegislativa.objects.get(
|
|
|
|
numero=numero, ano=ano, tipo=tipo)
|
|
|
|
|
|
|
|
if mat_principal.tipo == mat_anexada.tipo:
|
|
|
|
|
|
|
|
msg = _('A matéria a ser anexada não pode ser do mesmo \
|
|
|
|
tipo da matéria principal.')
|
|
|
|
messages.add_message(request, messages.INFO, msg)
|
|
|
|
return self.render_to_response(
|
|
|
|
{'form': form,
|
|
|
|
'materialegislativa': mat_principal
|
|
|
|
})
|
|
|
|
|
|
|
|
anexada.materia_principal = mat_principal
|
|
|
|
anexada.materia_anexada = mat_anexada
|
|
|
|
anexada.data_anexacao = data_anexacao
|
|
|
|
|
|
|
|
if data_desanexacao:
|
|
|
|
anexada.data_desanexacao = data_desanexacao
|
|
|
|
|
|
|
|
anexada.save()
|
|
|
|
return self.form_valid(form)
|
|
|
|
|
|
|
|
except ObjectDoesNotExist:
|
|
|
|
msg = _('A matéria a ser anexada não existe no cadastro \
|
|
|
|
de matérias legislativas.')
|
|
|
|
messages.add_message(request, messages.INFO, msg)
|
|
|
|
return self.render_to_response(
|
|
|
|
{'form': form,
|
|
|
|
'materialegislativa': mat_principal})
|
|
|
|
|
|
|
|
else:
|
|
|
|
return self.render_to_response(
|
|
|
|
{'form': form,
|
|
|
|
'materialegislativa': mat_principal})
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
pk = self.kwargs['pk']
|
|
|
|
return reverse('materia_anexada', kwargs={'pk': pk})
|
|
|
|
|
|
|
|
|
|
|
|
class DespachoInicialView(FormMixin, GenericView):
|
|
|
|
template_name = "materia/despacho_inicial.html"
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
despacho = DespachoInicial.objects.filter(materia_id=materia.id)
|
|
|
|
form = DespachoInicialForm()
|
|
|
|
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'despachos': despacho})
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
form = DespachoInicialForm(request.POST)
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
despacho = DespachoInicial.objects.filter(materia_id=materia.id)
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
despacho = DespachoInicial()
|
|
|
|
despacho.comissao = form.cleaned_data['comissao']
|
|
|
|
despacho.materia = materia
|
|
|
|
despacho.save()
|
|
|
|
return self.form_valid(form)
|
|
|
|
else:
|
|
|
|
return self.render_to_response({'form': form,
|
|
|
|
'object': materia,
|
|
|
|
'despachos': despacho})
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
pk = self.kwargs['pk']
|
|
|
|
return reverse('despacho_inicial', kwargs={'pk': pk})
|
|
|
|
|
|
|
|
|
|
|
|
class DespachoInicialEditView(FormMixin, GenericView):
|
|
|
|
template_name = "materia/despacho_inicial_edit.html"
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
despacho = DespachoInicial.objects.get(id=kwargs['id'])
|
|
|
|
form = DespachoInicialForm()
|
|
|
|
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'despacho': despacho,
|
|
|
|
'comissoes': Comissao.objects.all()})
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
form = DespachoInicialForm(request.POST)
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
despacho = DespachoInicial.objects.get(id=kwargs['id'])
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
if 'excluir' in request.POST:
|
|
|
|
despacho.delete()
|
|
|
|
return self.form_valid(form)
|
|
|
|
elif 'salvar' in request.POST:
|
|
|
|
despacho.comissao = form.cleaned_data['comissao']
|
|
|
|
despacho.materia = materia
|
|
|
|
despacho.save()
|
|
|
|
return self.form_valid(form)
|
|
|
|
else:
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'despacho': despacho,
|
|
|
|
'comissoes': Comissao.objects.all()})
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
pk = self.kwargs['pk']
|
|
|
|
return reverse('despacho_inicial', kwargs={'pk': pk})
|
|
|
|
|
|
|
|
|
|
|
|
class LegislacaoCitadaView(FormMixin, GenericView):
|
|
|
|
template_name = "materia/legislacao_citada.html"
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
legislacao = LegislacaoCitada.objects.filter(materia_id=kwargs['pk'])
|
|
|
|
form = LegislacaoCitadaForm()
|
|
|
|
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'legislacao': legislacao})
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
form = LegislacaoCitadaForm(request.POST)
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
legislacao_list = LegislacaoCitada.objects.filter(
|
|
|
|
materia_id=kwargs['pk'])
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
legislacao = LegislacaoCitada()
|
|
|
|
|
|
|
|
try:
|
|
|
|
norma = NormaJuridica.objects.get(
|
|
|
|
tipo_id=form.cleaned_data['tipo'],
|
|
|
|
numero=form.cleaned_data['numero'],
|
|
|
|
ano=form.cleaned_data['ano'])
|
|
|
|
except ObjectDoesNotExist:
|
|
|
|
msg = _('Norma Juridica não existe.')
|
|
|
|
messages.add_message(request, messages.INFO, msg)
|
|
|
|
return self.render_to_response({'form': form,
|
|
|
|
'object': materia,
|
|
|
|
'legislacao': legislacao_list})
|
|
|
|
legislacao.materia = materia
|
|
|
|
legislacao.norma = norma
|
|
|
|
legislacao.disposicoes = form.cleaned_data['disposicao']
|
|
|
|
legislacao.parte = form.cleaned_data['parte']
|
|
|
|
legislacao.livro = form.cleaned_data['livro']
|
|
|
|
legislacao.titulo = form.cleaned_data['titulo']
|
|
|
|
legislacao.capitulo = form.cleaned_data['capitulo']
|
|
|
|
legislacao.secao = form.cleaned_data['secao']
|
|
|
|
legislacao.subsecao = form.cleaned_data['subsecao']
|
|
|
|
legislacao.artigo = form.cleaned_data['artigo']
|
|
|
|
legislacao.paragrafo = form.cleaned_data['paragrafo']
|
|
|
|
legislacao.inciso = form.cleaned_data['inciso']
|
|
|
|
legislacao.alinea = form.cleaned_data['alinea']
|
|
|
|
legislacao.item = form.cleaned_data['item']
|
|
|
|
|
|
|
|
legislacao.save()
|
|
|
|
return self.form_valid(form)
|
|
|
|
else:
|
|
|
|
return self.render_to_response({'form': form,
|
|
|
|
'object': materia,
|
|
|
|
'legislacao': legislacao_list})
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
pk = self.kwargs['pk']
|
|
|
|
return reverse('legislacao_citada', kwargs={'pk': pk})
|
|
|
|
|
|
|
|
|
|
|
|
class LegislacaoCitadaEditView(FormMixin, GenericView):
|
|
|
|
template_name = "materia/legislacao_citada_edit.html"
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
pk = self.kwargs['pk']
|
|
|
|
return reverse('legislacao_citada', kwargs={'pk': pk})
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
legislacao = LegislacaoCitada.objects.get(id=kwargs['id'])
|
|
|
|
form = LegislacaoCitadaForm()
|
|
|
|
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'legislacao': legislacao,
|
|
|
|
'tipos_norma': TipoNormaJuridica.objects.all()})
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
form = LegislacaoCitadaForm(request.POST)
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
legislacao = LegislacaoCitada.objects.get(id=kwargs['id'])
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
if 'excluir' in request.POST:
|
|
|
|
legislacao.delete()
|
|
|
|
return self.form_valid(form)
|
|
|
|
elif 'salvar' in request.POST:
|
|
|
|
try:
|
|
|
|
norma = NormaJuridica.objects.get(
|
|
|
|
tipo_id=form.cleaned_data['tipo'],
|
|
|
|
numero=form.cleaned_data['numero'],
|
|
|
|
ano=form.cleaned_data['ano'])
|
|
|
|
except ObjectDoesNotExist:
|
|
|
|
msg = _('Norma Juridica não existe.')
|
|
|
|
messages.add_message(request, messages.INFO, msg)
|
|
|
|
return self.render_to_response(
|
|
|
|
{'form': form,
|
|
|
|
'object': materia,
|
|
|
|
'legislacao': legislacao,
|
|
|
|
'tipos_norma': TipoNormaJuridica.objects.all()})
|
|
|
|
legislacao.materia = materia
|
|
|
|
legislacao.norma = norma
|
|
|
|
legislacao.disposicoes = form.cleaned_data['disposicao']
|
|
|
|
legislacao.parte = form.cleaned_data['parte']
|
|
|
|
legislacao.livro = form.cleaned_data['livro']
|
|
|
|
legislacao.titulo = form.cleaned_data['titulo']
|
|
|
|
legislacao.capitulo = form.cleaned_data['capitulo']
|
|
|
|
legislacao.secao = form.cleaned_data['secao']
|
|
|
|
legislacao.subsecao = form.cleaned_data['subsecao']
|
|
|
|
legislacao.artigo = form.cleaned_data['artigo']
|
|
|
|
legislacao.paragrafo = form.cleaned_data['paragrafo']
|
|
|
|
legislacao.inciso = form.cleaned_data['inciso']
|
|
|
|
legislacao.alinea = form.cleaned_data['alinea']
|
|
|
|
legislacao.item = form.cleaned_data['item']
|
|
|
|
|
|
|
|
legislacao.save()
|
|
|
|
return self.form_valid(form)
|
|
|
|
else:
|
|
|
|
return self.render_to_response(
|
|
|
|
{'form': form,
|
|
|
|
'object': materia})
|
|
|
|
|
|
|
|
|
|
|
|
class NumeracaoView(FormMixin, GenericView):
|
|
|
|
template_name = "materia/numeracao.html"
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
numeracao = Numeracao.objects.filter(materia_id=kwargs['pk'])
|
|
|
|
form = NumeracaoForm()
|
|
|
|
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'numeracao': numeracao})
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
form = NumeracaoForm(request.POST)
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
numeracao_list = Numeracao.objects.filter(
|
|
|
|
materia_id=kwargs['pk'])
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
numeracao = Numeracao()
|
|
|
|
tipo = TipoMateriaLegislativa.objects.get(
|
|
|
|
id=form.cleaned_data['tipo_materia'])
|
|
|
|
|
|
|
|
numeracao.materia = materia
|
|
|
|
numeracao.tipo_materia = tipo
|
|
|
|
numeracao.numero_materia = form.cleaned_data['numero_materia']
|
|
|
|
numeracao.ano_materia = form.cleaned_data['ano_materia']
|
|
|
|
numeracao.data_materia = form.cleaned_data['data_materia']
|
|
|
|
|
|
|
|
numeracao.save()
|
|
|
|
return self.form_valid(form)
|
|
|
|
else:
|
|
|
|
return self.render_to_response({'form': form,
|
|
|
|
'object': materia,
|
|
|
|
'numeracao': numeracao_list})
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
pk = self.kwargs['pk']
|
|
|
|
return reverse('numeracao', kwargs={'pk': pk})
|
|
|
|
|
|
|
|
|
|
|
|
class NumeracaoEditView(FormMixin, GenericView):
|
|
|
|
template_name = "materia/numeracao_edit.html"
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
numeracao = Numeracao.objects.get(id=kwargs['id'])
|
|
|
|
form = NumeracaoForm()
|
|
|
|
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'numeracao': numeracao,
|
|
|
|
'tipos': TipoMateriaLegislativa.objects.all()})
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
form = NumeracaoForm(request.POST)
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
numeracao = Numeracao.objects.get(id=kwargs['id'])
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
if 'excluir' in request.POST:
|
|
|
|
numeracao.delete()
|
|
|
|
elif 'salvar' in request.POST:
|
|
|
|
tipo = TipoMateriaLegislativa.objects.get(
|
|
|
|
id=form.cleaned_data['tipo_materia'])
|
|
|
|
|
|
|
|
numeracao.materia = materia
|
|
|
|
numeracao.tipo_materia = tipo
|
|
|
|
numeracao.numero_materia = form.cleaned_data['numero_materia']
|
|
|
|
numeracao.ano_materia = form.cleaned_data['ano_materia']
|
|
|
|
numeracao.data_materia = form.cleaned_data['data_materia']
|
|
|
|
|
|
|
|
numeracao.save()
|
|
|
|
return self.form_valid(form)
|
|
|
|
else:
|
|
|
|
return self.render_to_response({'form': form,
|
|
|
|
'object': materia,
|
|
|
|
'numeracao': numeracao})
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
pk = self.kwargs['pk']
|
|
|
|
return reverse('numeracao', kwargs={'pk': pk})
|
|
|
|
|
|
|
|
|
|
|
|
class DocumentoAcessorioView(FormMixin, GenericView):
|
|
|
|
template_name = "materia/documento_acessorio.html"
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
docs = DocumentoAcessorio.objects.filter(materia_id=kwargs['pk'])
|
|
|
|
form = DocumentoAcessorioForm()
|
|
|
|
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'docs': docs})
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
form = DocumentoAcessorioForm(request.POST)
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
docs_list = DocumentoAcessorio.objects.filter(
|
|
|
|
materia_id=kwargs['pk'])
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
documento_acessorio = DocumentoAcessorio()
|
|
|
|
tipo = TipoDocumento.objects.get(
|
|
|
|
id=form.cleaned_data['tipo'])
|
|
|
|
|
|
|
|
documento_acessorio.materia = materia
|
|
|
|
documento_acessorio.tipo = tipo
|
|
|
|
documento_acessorio.data = form.cleaned_data['data']
|
|
|
|
documento_acessorio.nome = form.cleaned_data['nome']
|
|
|
|
documento_acessorio.autor = form.cleaned_data['autor']
|
|
|
|
documento_acessorio.ementa = form.cleaned_data['ementa']
|
|
|
|
|
|
|
|
documento_acessorio.save()
|
|
|
|
return self.form_valid(form)
|
|
|
|
else:
|
|
|
|
return self.render_to_response({'form': form,
|
|
|
|
'object': materia,
|
|
|
|
'docs': docs_list})
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
pk = self.kwargs['pk']
|
|
|
|
return reverse('documento_acessorio', kwargs={'pk': pk})
|
|
|
|
|
|
|
|
|
|
|
|
class AcompanhamentoConfirmarView(TemplateView):
|
|
|
|
|
|
|
|
def get_redirect_url(self):
|
|
|
|
return reverse("sessaoplenaria:list_pauta_sessao")
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
materia_id = kwargs['pk']
|
|
|
|
hash_txt = request.GET.get('hash_txt', '')
|
|
|
|
|
|
|
|
acompanhar = AcompanhamentoMateria.objects.get(materia_id=materia_id,
|
|
|
|
hash=hash_txt)
|
|
|
|
acompanhar.confirmado = True
|
|
|
|
acompanhar.save()
|
|
|
|
|
|
|
|
return HttpResponseRedirect(self.get_redirect_url())
|
|
|
|
|
|
|
|
|
|
|
|
class AcompanhamentoExcluirView(TemplateView):
|
|
|
|
|
|
|
|
def get_redirect_url(self):
|
|
|
|
return reverse("sessaoplenaria:list_pauta_sessao")
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
materia_id = kwargs['pk']
|
|
|
|
hash_txt = request.GET.get('hash_txt', '')
|
|
|
|
|
|
|
|
try:
|
|
|
|
AcompanhamentoMateria.objects.get(materia_id=materia_id,
|
|
|
|
hash=hash_txt).delete()
|
|
|
|
except ObjectDoesNotExist:
|
|
|
|
pass
|
|
|
|
|
|
|
|
return HttpResponseRedirect(self.get_redirect_url())
|
|
|
|
|
|
|
|
|
|
|
|
class DocumentoAcessorioEditView(FormMixin, GenericView):
|
|
|
|
template_name = "materia/documento_acessorio_edit.html"
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
documento = DocumentoAcessorio.objects.get(id=kwargs['id'])
|
|
|
|
form = DocumentoAcessorioForm()
|
|
|
|
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'doc': documento,
|
|
|
|
'tipos': TipoDocumento.objects.all()})
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
form = DocumentoAcessorioForm(request.POST)
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
documento = DocumentoAcessorio.objects.get(id=kwargs['id'])
|
|
|
|
if form.is_valid():
|
|
|
|
if 'excluir' in request.POST:
|
|
|
|
documento.delete()
|
|
|
|
elif 'salvar' in request.POST:
|
|
|
|
tipo = TipoDocumento.objects.get(
|
|
|
|
id=form.cleaned_data['tipo'])
|
|
|
|
documento.materia = materia
|
|
|
|
documento.tipo = tipo
|
|
|
|
documento.data = form.cleaned_data['data']
|
|
|
|
documento.nome = form.cleaned_data['nome']
|
|
|
|
documento.autor = form.cleaned_data['autor']
|
|
|
|
documento.ementa = form.cleaned_data['ementa']
|
|
|
|
|
|
|
|
documento.save()
|
|
|
|
return self.form_valid(form)
|
|
|
|
else:
|
|
|
|
return self.render_to_response({'form': form,
|
|
|
|
'object': materia,
|
|
|
|
'doc': documento})
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
pk = self.kwargs['pk']
|
|
|
|
return reverse('documento_acessorio', kwargs={'pk': pk})
|
|
|
|
|
|
|
|
|
|
|
|
class RelatoriaEditView(FormMixin, GenericView):
|
|
|
|
template_name = "materia/relatoria_edit.html"
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
pk = self.kwargs['pk']
|
|
|
|
return reverse('relatoria', kwargs={'pk': pk})
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
form = RelatoriaForm()
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
relatoria = Relatoria.objects.get(
|
|
|
|
id=kwargs['id'])
|
|
|
|
composicao = Composicao.objects.filter(
|
|
|
|
comissao=relatoria.comissao).last()
|
|
|
|
parlamentares = composicao.participacao_set.all()
|
|
|
|
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'relatoria': relatoria,
|
|
|
|
'tipo_fim_relatorias': TipoFimRelatoria.objects.all(),
|
|
|
|
'parlamentares': parlamentares})
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
form = RelatoriaForm(request.POST)
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
relatoria = Relatoria.objects.get(id=kwargs['id'])
|
|
|
|
composicao = Composicao.objects.filter(
|
|
|
|
comissao=relatoria.comissao).last()
|
|
|
|
parlamentares = composicao.participacao_set.all()
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
if 'excluir' in request.POST:
|
|
|
|
relatoria.delete()
|
|
|
|
return self.form_valid(form)
|
|
|
|
elif 'salvar' in request.POST:
|
|
|
|
relatoria.materia = materia
|
|
|
|
relatoria.comissao = relatoria.comissao
|
|
|
|
relatoria.data_designacao_relator = form.cleaned_data[
|
|
|
|
'data_designacao_relator']
|
|
|
|
relatoria.data_destituicao_relator = form.cleaned_data[
|
|
|
|
'data_destituicao_relator']
|
|
|
|
relatoria.parlamentar = form.cleaned_data['parlamentar']
|
|
|
|
relatoria.tipo_fim_relatoria = form.cleaned_data[
|
|
|
|
'tipo_fim_relatoria']
|
|
|
|
relatoria.save()
|
|
|
|
return self.form_valid(form)
|
|
|
|
else:
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'relatoria': relatoria,
|
|
|
|
'tipo_fim_relatorias': TipoFimRelatoria.objects.all(),
|
|
|
|
'parlamentares': parlamentares})
|
|
|
|
|
|
|
|
|
|
|
|
class RelatoriaView(FormMixin, GenericView):
|
|
|
|
template_name = "materia/relatoria.html"
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
pk = self.kwargs['pk']
|
|
|
|
return reverse('relatoria', kwargs={'pk': pk})
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
form = RelatoriaForm(request.POST)
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
|
|
|
|
if not materia.tramitacao_set.all():
|
|
|
|
msg = _(
|
|
|
|
'Adicione alguma Tramitação antes de adicionar uma Comissão!')
|
|
|
|
messages.add_message(request, messages.INFO, msg)
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'tipo_fim_relatoria': TipoFimRelatoria.objects.all()
|
|
|
|
})
|
|
|
|
else:
|
|
|
|
relatorias = Relatoria.objects.filter(
|
|
|
|
materia_id=kwargs['pk']).order_by(
|
|
|
|
'-data_designacao_relator')
|
|
|
|
localizacao = Tramitacao.objects.filter(
|
|
|
|
materia=materia).last()
|
|
|
|
|
|
|
|
comissao = Comissao.objects.get(
|
|
|
|
id=localizacao.unidade_tramitacao_destino.comissao.id)
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
relatoria = form.save(commit=False)
|
|
|
|
relatoria.materia = materia
|
|
|
|
relatoria.comissao = comissao
|
|
|
|
relatoria.save()
|
|
|
|
return self.form_valid(form)
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
composicao = Composicao.objects.get(comissao=comissao)
|
|
|
|
except ObjectDoesNotExist:
|
|
|
|
msg = _('Não há composição nesta Comissão!')
|
|
|
|
messages.add_message(request, messages.INFO, msg)
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'relatorias': relatorias,
|
|
|
|
'comissao': comissao})
|
|
|
|
|
|
|
|
parlamentares = composicao.participacao_set.all()
|
|
|
|
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'relatorias': relatorias,
|
|
|
|
'comissao': comissao,
|
|
|
|
'tipo_fim_relatoria': TipoFimRelatoria.objects.all(),
|
|
|
|
'parlamentares': parlamentares})
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
relatorias = Relatoria.objects.filter(
|
|
|
|
materia_id=kwargs['pk']).order_by('-data_designacao_relator')
|
|
|
|
form = RelatoriaForm()
|
|
|
|
|
|
|
|
localizacao = Tramitacao.objects.filter(
|
|
|
|
materia=materia).last()
|
|
|
|
|
|
|
|
if not materia.tramitacao_set.all():
|
|
|
|
msg = _(
|
|
|
|
'Adicione alguma Tramitação antes de adicionar uma Comissão!')
|
|
|
|
messages.add_message(request, messages.INFO, msg)
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'relatorias': relatorias,
|
|
|
|
'tipo_fim_relatoria': TipoFimRelatoria.objects.all()
|
|
|
|
})
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
comissao = Comissao.objects.get(
|
|
|
|
id=localizacao.unidade_tramitacao_destino.comissao.id)
|
|
|
|
composicao = Composicao.objects.filter(
|
|
|
|
comissao=comissao).last()
|
|
|
|
if not composicao:
|
|
|
|
msg = _('Não há composição nesta Comissão!')
|
|
|
|
messages.add_message(request, messages.INFO, msg)
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'relatorias': relatorias,
|
|
|
|
'comissao': comissao})
|
|
|
|
parlamentares = composicao.participacao_set.all()
|
|
|
|
except ObjectDoesNotExist:
|
|
|
|
msg = _('O local atual deve ser uma Comissão!')
|
|
|
|
messages.add_message(request, messages.INFO, msg)
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'relatorias': relatorias})
|
|
|
|
else:
|
|
|
|
composicao = Composicao.objects.filter(
|
|
|
|
comissao=comissao).last()
|
|
|
|
parlamentares = composicao.participacao_set.all()
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'relatorias': relatorias,
|
|
|
|
'comissao': comissao,
|
|
|
|
'tipo_fim_relatoria': TipoFimRelatoria.objects.all(),
|
|
|
|
'parlamentares': parlamentares})
|
|
|
|
|
|
|
|
|
|
|
|
def load_email_templates(templates, context={}):
|
|
|
|
|
|
|
|
emails = []
|
|
|
|
for t in templates:
|
|
|
|
tpl = loader.get_template(t)
|
|
|
|
email = tpl.render(Context(context))
|
|
|
|
if t.endswith(".html"):
|
|
|
|
email = email.replace('\n', '').replace('\r', '')
|
|
|
|
emails.append(email)
|
|
|
|
return emails
|
|
|
|
|
|
|
|
|
|
|
|
def criar_email_confirmacao(request, casa_legislativa, materia, hash_txt=''):
|
|
|
|
|
|
|
|
if not casa_legislativa:
|
|
|
|
raise ValueError("Casa Legislativa é obrigatória")
|
|
|
|
|
|
|
|
if not materia:
|
|
|
|
raise ValueError("Matéria é obrigatória")
|
|
|
|
|
|
|
|
# FIXME i18n
|
|
|
|
casa_nome = (casa_legislativa.nome + ' de ' +
|
|
|
|
casa_legislativa.municipio + '-' +
|
|
|
|
casa_legislativa.uf)
|
|
|
|
|
|
|
|
base_url = get_base_url(request)
|
|
|
|
materia_url = reverse('acompanhar_materia', kwargs={'pk': materia.id})
|
|
|
|
confirmacao_url = reverse('acompanhar_confirmar',
|
|
|
|
kwargs={'pk': materia.id})
|
|
|
|
|
|
|
|
autores = []
|
|
|
|
for autoria in materia.autoria_set.all():
|
|
|
|
autores.append(autoria.autor.nome)
|
|
|
|
|
|
|
|
templates = load_email_templates(['email/acompanhar.txt',
|
|
|
|
'email/acompanhar.html'],
|
|
|
|
{"casa_legislativa": casa_nome,
|
|
|
|
"logotipo": casa_legislativa.logotipo,
|
|
|
|
"descricao_materia": materia.ementa,
|
|
|
|
"autoria": autores,
|
|
|
|
"hash_txt": hash_txt,
|
|
|
|
"base_url": base_url,
|
|
|
|
"materia": str(materia),
|
|
|
|
"materia_url": materia_url,
|
|
|
|
"confirmacao_url": confirmacao_url, })
|
|
|
|
return templates
|
|
|
|
|
|
|
|
|
|
|
|
def criar_email_tramitacao(request, casa_legislativa, materia, hash_txt=''):
|
|
|
|
|
|
|
|
if not casa_legislativa:
|
|
|
|
raise ValueError("Casa Legislativa é obrigatória")
|
|
|
|
|
|
|
|
if not materia:
|
|
|
|
raise ValueError("Matéria é obrigatória")
|
|
|
|
|
|
|
|
# FIXME i18n
|
|
|
|
casa_nome = (casa_legislativa.nome + ' de ' +
|
|
|
|
casa_legislativa.municipio + '-' +
|
|
|
|
casa_legislativa.uf)
|
|
|
|
|
|
|
|
base_url = get_base_url(request)
|
|
|
|
url_materia = reverse('acompanhar_materia', kwargs={'pk': materia.id})
|
|
|
|
url_excluir = reverse('acompanhar_excluir', kwargs={'pk': materia.id})
|
|
|
|
|
|
|
|
autores = []
|
|
|
|
for autoria in materia.autoria_set.all():
|
|
|
|
autores.append(autoria.autor.nome)
|
|
|
|
|
|
|
|
templates = load_email_templates(['email/tramitacao.txt',
|
|
|
|
'email/tramitacao.html'],
|
|
|
|
{"casa_legislativa": casa_nome,
|
|
|
|
"data_registro": datetime.now().strftime(
|
|
|
|
"%d/%m/%Y"),
|
|
|
|
"cod_materia": materia.id,
|
|
|
|
"logotipo": casa_legislativa.logotipo,
|
|
|
|
"descricao_materia": materia.ementa,
|
|
|
|
"autoria": autores,
|
|
|
|
"data": materia.tramitacao_set.last(
|
|
|
|
).data_tramitacao,
|
|
|
|
"status": materia.tramitacao_set.last(
|
|
|
|
).status,
|
|
|
|
"texto_acao":
|
|
|
|
materia.tramitacao_set.last().texto,
|
|
|
|
"hash_txt": hash_txt,
|
|
|
|
"materia": str(materia),
|
|
|
|
"base_url": base_url,
|
|
|
|
"materia_url": url_materia,
|
|
|
|
"excluir_url": url_excluir})
|
|
|
|
return templates
|
|
|
|
|
|
|
|
|
|
|
|
def enviar_emails(sender, recipients, messages):
|
|
|
|
'''
|
|
|
|
Recipients is a string list of email addresses
|
|
|
|
|
|
|
|
Messages is an array of dicts of the form:
|
|
|
|
{'recipient': 'address', # useless????
|
|
|
|
'subject': 'subject text',
|
|
|
|
'txt_message': 'text message',
|
|
|
|
'html_message': 'html message'
|
|
|
|
}
|
|
|
|
'''
|
|
|
|
|
|
|
|
if len(messages) == 1:
|
|
|
|
# sends an email simultaneously to all recipients
|
|
|
|
send_mail(messages[0]['subject'],
|
|
|
|
messages[0]['txt_message'],
|
|
|
|
sender,
|
|
|
|
recipients,
|
|
|
|
html_message=messages[0]['html_message'],
|
|
|
|
fail_silently=False)
|
|
|
|
|
|
|
|
elif len(recipients) > len(messages):
|
|
|
|
raise ValueError("Message list should have size 1 \
|
|
|
|
or equal recipient list size. \
|
|
|
|
recipients: %s, messages: %s" % (recipients, messages)
|
|
|
|
)
|
|
|
|
|
|
|
|
else:
|
|
|
|
# sends an email simultaneously to all reciepients
|
|
|
|
for (d, m) in zip(recipients, messages):
|
|
|
|
send_mail(m['subject'],
|
|
|
|
m['txt_message'],
|
|
|
|
sender,
|
|
|
|
[d],
|
|
|
|
html_message=m['html_message'],
|
|
|
|
fail_silently=False)
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
def do_envia_email_confirmacao(request, materia, email):
|
|
|
|
#
|
|
|
|
# Envia email de confirmacao para atualizações de tramitação
|
|
|
|
#
|
|
|
|
destinatario = AcompanhamentoMateria.objects.get(materia=materia,
|
|
|
|
email=email,
|
|
|
|
confirmado=False)
|
|
|
|
casa = CasaLegislativa.objects.first()
|
|
|
|
|
|
|
|
sender = 'sapl-test@interlegis.leg.br'
|
|
|
|
# FIXME i18n
|
|
|
|
subject = "[SAPL] " + str(materia) + " - Ative o Acompanhamento da Materia"
|
|
|
|
messages = []
|
|
|
|
recipients = []
|
|
|
|
|
|
|
|
email_texts = criar_email_confirmacao(request,
|
|
|
|
casa,
|
|
|
|
materia,
|
|
|
|
destinatario.hash,)
|
|
|
|
recipients.append(destinatario.email)
|
|
|
|
messages.append({
|
|
|
|
'recipient': destinatario.email,
|
|
|
|
'subject': subject,
|
|
|
|
'txt_message': email_texts[0],
|
|
|
|
'html_message': email_texts[1]
|
|
|
|
})
|
|
|
|
|
|
|
|
enviar_emails(sender, recipients, messages)
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
def do_envia_email_tramitacao(request, materia):
|
|
|
|
#
|
|
|
|
# Envia email de tramitacao para usuarios cadastrados
|
|
|
|
#
|
|
|
|
destinatarios = AcompanhamentoMateria.objects.filter(materia=materia,
|
|
|
|
confirmado=True)
|
|
|
|
casa = CasaLegislativa.objects.first()
|
|
|
|
|
|
|
|
sender = 'sapl-test@interlegis.leg.br'
|
|
|
|
# FIXME i18n
|
|
|
|
subject = "[SAPL] " + str(materia) + \
|
|
|
|
" - Acompanhamento de Materia Legislativa"
|
|
|
|
messages = []
|
|
|
|
recipients = []
|
|
|
|
for destinatario in destinatarios:
|
|
|
|
email_texts = criar_email_tramitacao(request,
|
|
|
|
casa,
|
|
|
|
materia,
|
|
|
|
destinatario.hash,)
|
|
|
|
recipients.append(destinatario.email)
|
|
|
|
messages.append({
|
|
|
|
'recipient': destinatario.email,
|
|
|
|
'subject': subject,
|
|
|
|
'txt_message': email_texts[0],
|
|
|
|
'html_message': email_texts[1]
|
|
|
|
})
|
|
|
|
|
|
|
|
enviar_emails(sender, recipients, messages)
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
class TramitacaoView(FormMixin, GenericView):
|
|
|
|
template_name = "materia/tramitacao.html"
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
tramitacoes = Tramitacao.objects.filter(
|
|
|
|
materia_id=kwargs['pk']).order_by('-data_tramitacao')
|
|
|
|
form = TramitacaoForm
|
|
|
|
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'tramitacoes': tramitacoes})
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
form = TramitacaoForm(request.POST)
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
tramitacoes_list = Tramitacao.objects.filter(
|
|
|
|
materia_id=kwargs['pk']).order_by('-data_tramitacao')
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
ultima_tramitacao = Tramitacao.objects.filter(
|
|
|
|
materia_id=kwargs['pk']).last()
|
|
|
|
|
|
|
|
destino = ultima_tramitacao.unidade_tramitacao_destino
|
|
|
|
cleaned_data = form.cleaned_data['unidade_tramitacao_local']
|
|
|
|
if (destino == cleaned_data):
|
|
|
|
tramitacao = form.save(commit=False)
|
|
|
|
tramitacao.materia = materia
|
|
|
|
tramitacao.save()
|
|
|
|
else:
|
|
|
|
msg = _('A origem da nova tramitação \
|
|
|
|
deve ser igual ao destino da última adicionada!')
|
|
|
|
messages.add_message(request, messages.INFO, msg)
|
|
|
|
return self.render_to_response(
|
|
|
|
{'form': form,
|
|
|
|
'object': materia,
|
|
|
|
'tramitacoes': tramitacoes_list})
|
|
|
|
|
|
|
|
do_envia_email_tramitacao(request, materia)
|
|
|
|
|
|
|
|
return self.form_valid(form)
|
|
|
|
else:
|
|
|
|
return self.render_to_response({'form': form,
|
|
|
|
'object': materia,
|
|
|
|
'tramitacoes': tramitacoes_list})
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
pk = self.kwargs['pk']
|
|
|
|
return reverse('tramitacao_materia', kwargs={'pk': pk})
|
|
|
|
|
|
|
|
|
|
|
|
class TramitacaoEditView(FormMixin, GenericView):
|
|
|
|
template_name = "materia/tramitacao_edit.html"
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
tramitacao = Tramitacao.objects.get(id=kwargs['id'])
|
|
|
|
form = TramitacaoForm
|
|
|
|
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'tramitacao': tramitacao,
|
|
|
|
'turno': Tramitacao.TURNO_CHOICES,
|
|
|
|
'status': StatusTramitacao.objects.all(),
|
|
|
|
'unidade_tramitacao': UnidadeTramitacao.objects.all()})
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
tramitacao = Tramitacao.objects.get(id=kwargs['id'])
|
|
|
|
form = TramitacaoForm(request.POST)
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
if 'excluir' in request.POST:
|
|
|
|
if tramitacao == Tramitacao.objects.filter(
|
|
|
|
materia=materia).last():
|
|
|
|
tramitacao.delete()
|
|
|
|
return self.form_valid(form)
|
|
|
|
else:
|
|
|
|
msg = _('Somente a útlima tramitação pode ser deletada!')
|
|
|
|
messages.add_message(request, messages.INFO, msg)
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'tramitacao': tramitacao,
|
|
|
|
'turno': Tramitacao.TURNO_CHOICES,
|
|
|
|
'status': StatusTramitacao.objects.all(),
|
|
|
|
'unidade_tramitacao': UnidadeTramitacao.objects.all()
|
|
|
|
})
|
|
|
|
elif 'salvar' in request.POST:
|
|
|
|
tramitacao.status = form.cleaned_data['status']
|
|
|
|
tramitacao.turno = form.cleaned_data['turno']
|
|
|
|
tramitacao.urgente = form.cleaned_data['urgente']
|
|
|
|
tramitacao.unidade_tramitacao_destino = form.cleaned_data[
|
|
|
|
'unidade_tramitacao_destino']
|
|
|
|
tramitacao.data_encaminhamento = form.cleaned_data[
|
|
|
|
'data_encaminhamento']
|
|
|
|
tramitacao.data_fim_prazo = form.cleaned_data['data_fim_prazo']
|
|
|
|
tramitacao.texto = form.cleaned_data['texto']
|
|
|
|
|
|
|
|
tramitacao.save()
|
|
|
|
return self.form_valid(form)
|
|
|
|
else:
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'tramitacao': tramitacao,
|
|
|
|
'turno': Tramitacao.TURNO_CHOICES,
|
|
|
|
'status': StatusTramitacao.objects.all(),
|
|
|
|
'unidade_tramitacao': UnidadeTramitacao.objects.all()})
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
pk = self.kwargs['pk']
|
|
|
|
return reverse('tramitacao_materia', kwargs={'pk': pk})
|
|
|
|
|
|
|
|
|
|
|
|
class AutoriaView(GenericView):
|
|
|
|
template_name = "materia/autoria.html"
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
autorias = Autoria.objects.filter(materia=materia)
|
|
|
|
form = AutoriaForm()
|
|
|
|
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'autorias': autorias,
|
|
|
|
'partido_autor': Partido.objects.all(),
|
|
|
|
'tipo_autores': TipoAutor.objects.all(),
|
|
|
|
'autores': Autor.objects.all(),
|
|
|
|
'tipo_autor_id': TipoAutor.objects.first().id})
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
autorias = Autoria.objects.filter(materia=materia)
|
|
|
|
form = AutoriaForm(request.POST)
|
|
|
|
|
|
|
|
if 'salvar' in request.POST:
|
|
|
|
if int(form.data['primeiro_autor']) == 1:
|
|
|
|
primeiro = True
|
|
|
|
else:
|
|
|
|
primeiro = False
|
|
|
|
|
|
|
|
autor = Autor.objects.get(
|
|
|
|
id=int(form.data['nome_autor']))
|
|
|
|
|
|
|
|
filiacao_autor = Partido.objects.get(
|
|
|
|
sigla=form.data['partido_autor'])
|
|
|
|
|
|
|
|
try:
|
|
|
|
autoria = Autoria.objects.get(
|
|
|
|
autor=autor,
|
|
|
|
materia=materia,
|
|
|
|
partido=filiacao_autor
|
|
|
|
)
|
|
|
|
except ObjectDoesNotExist:
|
|
|
|
autoria = Autoria()
|
|
|
|
autoria.autor = autor
|
|
|
|
autoria.materia = materia
|
|
|
|
autoria.partido = filiacao_autor
|
|
|
|
autoria.primeiro_autor = primeiro
|
|
|
|
|
|
|
|
autoria.save()
|
|
|
|
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'autorias': autorias,
|
|
|
|
'partido_autor': Partido.objects.all(),
|
|
|
|
'tipo_autores': TipoAutor.objects.all(),
|
|
|
|
'autores': Autor.objects.all(),
|
|
|
|
'tipo_autor_id': int(form.data['tipo_autor'])})
|
|
|
|
else:
|
|
|
|
msg = _('Essa autoria já foi adicionada!')
|
|
|
|
messages.add_message(request, messages.INFO, msg)
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'autorias': autorias,
|
|
|
|
'tipo_autores': TipoAutor.objects.all(),
|
|
|
|
'autores': Autor.objects.all(),
|
|
|
|
'tipo_autor_id': int(form.data['tipo_autor'])})
|
|
|
|
else:
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'autorias': autorias,
|
|
|
|
'partido_autor': Partido.objects.all(),
|
|
|
|
'tipo_autores': TipoAutor.objects.all(),
|
|
|
|
'autores': Autor.objects.all(),
|
|
|
|
'tipo_autor_id': int(form.data['tipo_autor'])})
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
pk = self.kwargs['pk']
|
|
|
|
return reverse('autoria', kwargs={'pk': pk})
|
|
|
|
|
|
|
|
|
|
|
|
class AutoriaEditView(GenericView, FormMixin):
|
|
|
|
template_name = "materia/autoria_edit.html"
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
autorias = Autoria.objects.filter(materia=materia)
|
|
|
|
autor = Autor.objects.get(id=self.kwargs['id'])
|
|
|
|
form = AutoriaForm()
|
|
|
|
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'autorias': autorias,
|
|
|
|
'tipo_autores': TipoAutor.objects.all(),
|
|
|
|
'partido': Partido.objects.all(),
|
|
|
|
'autores': Autor.objects.all(),
|
|
|
|
'tipo_autor_id': autor.tipo.id,
|
|
|
|
'autor_id': autor.id})
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
materia = MateriaLegislativa.objects.get(id=kwargs['pk'])
|
|
|
|
autorias = Autoria.objects.filter(materia=materia)
|
|
|
|
form = AutoriaForm(request.POST)
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
if int(form.data['primeiro_autor']) == 1:
|
|
|
|
primeiro = True
|
|
|
|
else:
|
|
|
|
primeiro = False
|
|
|
|
|
|
|
|
autor = Autor.objects.get(
|
|
|
|
id=int(form.data['nome_autor']))
|
|
|
|
|
|
|
|
filiacao_autor = Partido.objects.get(
|
|
|
|
sigla=form.data['partido'])
|
|
|
|
|
|
|
|
autoria = Autoria.objects.get(materia=materia, autor__id=autor.id)
|
|
|
|
autoria.autor = autor
|
|
|
|
autoria.partido = filiacao_autor
|
|
|
|
autoria.materia = materia
|
|
|
|
autoria.primeiro_autor = primeiro
|
|
|
|
|
|
|
|
if 'salvar' in request.POST:
|
|
|
|
autoria.save()
|
|
|
|
|
|
|
|
return self.form_valid(form)
|
|
|
|
|
|
|
|
else:
|
|
|
|
return self.render_to_response(
|
|
|
|
{'object': materia,
|
|
|
|
'form': form,
|
|
|
|
'autorias': autorias,
|
|
|
|
'partido': Partido.objects.all(),
|
|
|
|
'tipo_autores': TipoAutor.objects.all(),
|
|
|
|
'autores': Autor.objects.all(),
|
|
|
|
'tipo_autor_id': int(form.data['tipo_autor'])})
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
pk = self.kwargs['pk']
|
|
|
|
return reverse('autoria', kwargs={'pk': pk})
|
|
|
|
|
|
|
|
|
|
|
|
class ProposicaoListView(ListView):
|
|
|
|
template_name = "materia/proposicao_list.html"
|
|
|
|
paginate_by = 10
|
|
|
|
model = Proposicao
|
|
|
|
|
|
|
|
def get_queryset(self):
|
|
|
|
return Proposicao.objects.all().order_by('-data_envio')
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
context = super(ProposicaoListView, self).get_context_data(**kwargs)
|
|
|
|
|
|
|
|
paginator = context['paginator']
|
|
|
|
page_obj = context['page_obj']
|
|
|
|
|
|
|
|
context['page_range'] = make_pagination(
|
|
|
|
page_obj.number, paginator.num_pages)
|
|
|
|
return context
|
|
|
|
|
|
|
|
|
|
|
|
class MateriaLegislativaPesquisaView(FormMixin, GenericView):
|
|
|
|
template_name = 'materia/pesquisa_materia.html'
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
return reverse('pesquisar_materia')
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
form = MateriaLegislativaPesquisaForm()
|
|
|
|
return self.render_to_response({'form': form})
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
kwargs = {}
|
|
|
|
form = MateriaLegislativaPesquisaForm()
|
|
|
|
# TODO: Autor, Relator, Localização, Origem
|
|
|
|
|
|
|
|
if request.POST['tipo']:
|
|
|
|
kwargs['tipo'] = request.POST['tipo']
|
|
|
|
|
|
|
|
if request.POST['numero']:
|
|
|
|
try:
|
|
|
|
int(request.POST['numero'])
|
|
|
|
except ValueError:
|
|
|
|
mensagem = _("Insira um número inteiro em matéria!")
|
|
|
|
messages.add_message(request, messages.INFO, mensagem)
|
|
|
|
return self.render_to_response(
|
|
|
|
{'form': form})
|
|
|
|
else:
|
|
|
|
kwargs['numero'] = request.POST['numero']
|
|
|
|
|
|
|
|
if request.POST['ano']:
|
|
|
|
try:
|
|
|
|
int(request.POST['ano'])
|
|
|
|
except ValueError:
|
|
|
|
mensagem = _("Insira uma data válida em Ano da Matéria!")
|
|
|
|
messages.add_message(request, messages.INFO, mensagem)
|
|
|
|
return self.render_to_response(
|
|
|
|
{'form': form})
|
|
|
|
else:
|
|
|
|
kwargs['ano'] = request.POST['ano']
|
|
|
|
|
|
|
|
if request.POST['numero_protocolo']:
|
|
|
|
try:
|
|
|
|
int(request.POST['numero_protocolo'])
|
|
|
|
except ValueError:
|
|
|
|
mensagem = _("Insira um Número de Protocolo válido!")
|
|
|
|
messages.add_message(request, messages.INFO, mensagem)
|
|
|
|
return self.render_to_response(
|
|
|
|
{'form': form})
|
|
|
|
else:
|
|
|
|
kwargs['numero_protocolo'] = request.POST['numero_protocolo']
|
|
|
|
|
|
|
|
if request.POST['data_apresentacao']:
|
|
|
|
try:
|
|
|
|
datetime.strptime(
|
|
|
|
request.POST['data_apresentacao'],
|
|
|
|
'%d/%m/%Y').strftime('%Y-%m-%d')
|
|
|
|
except ValueError:
|
|
|
|
mensagem = _("Insira uma Data de Apresentação válida!")
|
|
|
|
messages.add_message(request, messages.INFO, mensagem)
|
|
|
|
return self.render_to_response(
|
|
|
|
{'form': form})
|
|
|
|
else:
|
|
|
|
kwargs['data_apresentacao'] = datetime.strptime(
|
|
|
|
request.POST['data_apresentacao'],
|
|
|
|
'%d/%m/%Y').strftime('%Y-%m-%d')
|
|
|
|
|
|
|
|
if request.POST['data_publicacao']:
|
|
|
|
try:
|
|
|
|
datetime.strptime(
|
|
|
|
request.POST['data_publicacao'],
|
|
|
|
'%d/%m/%Y').strftime('%Y-%m-%d')
|
|
|
|
except ValueError:
|
|
|
|
mensagem = _("Insira uma Data de Publicação válida!")
|
|
|
|
messages.add_message(request, messages.INFO, mensagem)
|
|
|
|
return self.render_to_response(
|
|
|
|
{'form': form})
|
|
|
|
else:
|
|
|
|
kwargs['data_publicacao'] = datetime.strptime(
|
|
|
|
request.POST['data_publicacao'],
|
|
|
|
'%d/%m/%Y').strftime('%Y-%m-%d')
|
|
|
|
|
|
|
|
if request.POST['tramitacao']:
|
|
|
|
kwargs['em_tramitacao'] = request.POST['tramitacao']
|
|
|
|
|
|
|
|
# Pega "palavras-chaves" que podem ter na ementa, icontains NÃO é
|
|
|
|
# case-sensitive
|
|
|
|
if request.POST['assunto']:
|
|
|
|
kwargs['ementa__icontains'] = request.POST['assunto']
|
|
|
|
|
|
|
|
if request.POST['autor']:
|
|
|
|
kwargs['autoria__autor__id'] = request.POST['autor']
|
|
|
|
|
|
|
|
if request.POST['relator']:
|
|
|
|
kwargs['relatoria__parlamentar__id'] = request.POST['relator']
|
|
|
|
|
|
|
|
if request.POST['localizacao']:
|
|
|
|
local = request.POST['localizacao']
|
|
|
|
kwargs['tramitacao__unidade_tramitacao_destino'] = local
|
|
|
|
|
|
|
|
if request.POST['situacao']:
|
|
|
|
kwargs['tramitacao__status'] = request.POST['situacao']
|
|
|
|
|
|
|
|
if request.POST['tipo_autor']:
|
|
|
|
kwargs['autoria__autor__tipo'] = request.POST['tipo_autor']
|
|
|
|
|
|
|
|
if request.POST['partido_autor']:
|
|
|
|
kwargs['autoria__partido'] = request.POST['partido_autor']
|
|
|
|
|
|
|
|
if request.POST['ordem']:
|
|
|
|
kwargs['ordem'] = request.POST['ordem']
|
|
|
|
|
|
|
|
if request.POST['local_origem_externa']:
|
|
|
|
kwargs['local_origem_externa'] = request.POST[
|
|
|
|
'local_origem_externa']
|
|
|
|
|
|
|
|
request.session['kwargs'] = kwargs
|
|
|
|
return redirect('pesquisar_materia_list')
|
|
|
|
|
|
|
|
|
|
|
|
class PesquisaMateriaListView(ListView):
|
|
|
|
template_name = 'materia/pesquisa_materia_list.html'
|
|
|
|
context_object_name = 'materias'
|
|
|
|
model = MateriaLegislativa
|
|
|
|
paginate_by = 10
|
|
|
|
|
|
|
|
def get_queryset(self):
|
|
|
|
kwargs = self.request.session['kwargs']
|
|
|
|
|
|
|
|
ordem = int(kwargs.pop('ordem'))
|
|
|
|
if ordem == 1:
|
|
|
|
lista_materias = MateriaLegislativa.objects.filter(
|
|
|
|
**kwargs).order_by('ano', 'numero').distinct()
|
|
|
|
else:
|
|
|
|
lista_materias = MateriaLegislativa.objects.filter(
|
|
|
|
**kwargs).order_by('-ano', '-numero').distinct()
|
|
|
|
|
|
|
|
materias = []
|
|
|
|
|
|
|
|
# Garante que a pesquisa retornará a última tramitação
|
|
|
|
if (kwargs.get('tramitacao__unidade_tramitacao_destino') and
|
|
|
|
kwargs.get('tramitacao__status')):
|
|
|
|
local = int(kwargs['tramitacao__unidade_tramitacao_destino'])
|
|
|
|
status = int(kwargs['tramitacao__status'])
|
|
|
|
for m in lista_materias:
|
|
|
|
l = m.tramitacao_set.last().unidade_tramitacao_destino_id
|
|
|
|
s = m.tramitacao_set.last().status_id
|
|
|
|
if l == local and s == status:
|
|
|
|
materias.append(m)
|
|
|
|
return materias
|
|
|
|
|
|
|
|
if kwargs.get('tramitacao__unidade_tramitacao_destino'):
|
|
|
|
local = int(kwargs['tramitacao__unidade_tramitacao_destino'])
|
|
|
|
for m in lista_materias:
|
|
|
|
l = m.tramitacao_set.last().unidade_tramitacao_destino_id
|
|
|
|
if l == local:
|
|
|
|
materias.append(m)
|
|
|
|
return materias
|
|
|
|
|
|
|
|
if kwargs.get('tramitacao__status'):
|
|
|
|
status = int(kwargs['tramitacao__status'])
|
|
|
|
for m in lista_materias:
|
|
|
|
s = m.tramitacao_set.last().status_id
|
|
|
|
if s == status:
|
|
|
|
materias.append(m)
|
|
|
|
return materias
|
|
|
|
|
|
|
|
else:
|
|
|
|
return lista_materias
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
context = super(PesquisaMateriaListView, self).get_context_data(
|
|
|
|
**kwargs)
|
|
|
|
|
|
|
|
paginator = context['paginator']
|
|
|
|
page_obj = context['page_obj']
|
|
|
|
|
|
|
|
context['page_range'] = make_pagination(
|
|
|
|
page_obj.number, paginator.num_pages)
|
|
|
|
return context
|
|
|
|
|
|
|
|
|
|
|
|
class ProposicaoView(FormMixin, GenericView):
|
|
|
|
template_name = "materia/proposicao.html"
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
return reverse('list_proposicao')
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
form = ProposicaoForm()
|
|
|
|
return self.render_to_response({'form': form})
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
form = ProposicaoForm(request.POST)
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
proposicao = form.save(commit=False)
|
|
|
|
if 'texto_original' in request.FILES:
|
|
|
|
proposicao.texto_original = request.FILES['texto_original']
|
|
|
|
|
|
|
|
tipo = TipoProposicao.objects.get(
|
|
|
|
id=int(request.POST['tipo']))
|
|
|
|
|
|
|
|
if tipo.descricao == 'Parecer':
|
|
|
|
try:
|
|
|
|
materia = MateriaLegislativa.objects.get(
|
|
|
|
tipo_id=int(form.data['tipo_materia']),
|
|
|
|
ano=int(form.data['ano_materia']),
|
|
|
|
numero=int(form.data['numero_materia']))
|
|
|
|
except ObjectDoesNotExist:
|
|
|
|
msg = _('Matéria adicionada não existe!')
|
|
|
|
messages.add_message(request, messages.INFO, msg)
|
|
|
|
return self.render_to_response({'form': form})
|
|
|
|
else:
|
|
|
|
proposicao.autor = materia.autoria_set.first().autor
|
|
|
|
proposicao.materia = materia
|
|
|
|
|
|
|
|
proposicao.descricao = sub(' ',
|
|
|
|
' ',
|
|
|
|
strip_tags(form.data['descricao']))
|
|
|
|
# proposicao.data_envio = datetime.now()
|
|
|
|
proposicao.save()
|
|
|
|
return self.form_valid(form)
|
|
|
|
else:
|
|
|
|
return self.render_to_response({'form': form})
|
|
|
|
|
|
|
|
|
|
|
|
class MateriaTaView(IntegracaoTaView):
|
|
|
|
model = MateriaLegislativa
|
|
|
|
model_type_foreignkey = TipoMateriaLegislativa
|
|
|
|
|
|
|
|
|
|
|
|
class ProposicaoTaView(IntegracaoTaView):
|
|
|
|
model = Proposicao
|
|
|
|
model_type_foreignkey = TipoProposicao
|
|
|
|
|
|
|
|
|
|
|
|
class AcompanhamentoMateriaView(materia_legislativa_crud.CrudDetailView):
|
|
|
|
template_name = "materia/acompanhamento_materia.html"
|
|
|
|
|
|
|
|
def get_random_chars(self):
|
|
|
|
s = ascii_letters + digits
|
|
|
|
return ''.join(choice(s) for i in range(choice([6, 7])))
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
pk = self.kwargs['pk']
|
|
|
|
materia = MateriaLegislativa.objects.get(id=pk)
|
|
|
|
|
|
|
|
return self.render_to_response(
|
|
|
|
{'form': AcompanhamentoMateriaForm(),
|
|
|
|
'materia': materia})
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
form = AcompanhamentoMateriaForm(request.POST)
|
|
|
|
pk = self.kwargs['pk']
|
|
|
|
materia = MateriaLegislativa.objects.get(id=pk)
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
|
|
|
|
email = form.cleaned_data['email']
|
|
|
|
usuario = request.user
|
|
|
|
|
|
|
|
hash_txt = self.get_random_chars()
|
|
|
|
|
|
|
|
try:
|
|
|
|
AcompanhamentoMateria.objects.get(
|
|
|
|
email=email,
|
|
|
|
materia=materia,
|
|
|
|
hash=hash_txt)
|
|
|
|
except ObjectDoesNotExist:
|
|
|
|
acompanhar = form.save(commit=False)
|
|
|
|
acompanhar.hash = hash_txt
|
|
|
|
acompanhar.materia = materia
|
|
|
|
acompanhar.usuario = usuario.username
|
|
|
|
acompanhar.confirmado = False
|
|
|
|
acompanhar.save()
|
|
|
|
|
|
|
|
do_envia_email_confirmacao(request, materia, email)
|
|
|
|
|
|
|
|
else:
|
|
|
|
return self.render_to_response(
|
|
|
|
{'form': form,
|
|
|
|
'materia': materia,
|
|
|
|
'error': _('Essa matéria já está\
|
|
|
|
sendo acompanhada por este e-mail.')})
|
|
|
|
return self.form_valid(form)
|
|
|
|
else:
|
|
|
|
return self.render_to_response(
|
|
|
|
{'form': form,
|
|
|
|
'materia': materia})
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
return reverse('sessaoplenaria:list_pauta_sessao')
|