|
@ -1,9 +1,10 @@ |
|
|
from django.db import models |
|
|
from django.db import models |
|
|
from django.utils.translation import ugettext_lazy as _ |
|
|
from django.utils.translation import ugettext_lazy as _ |
|
|
|
|
|
from model_utils import Choices |
|
|
|
|
|
|
|
|
from comissoes.models import Comissao |
|
|
from comissoes.models import Comissao |
|
|
from parlamentares.models import Parlamentar, Partido |
|
|
from parlamentares.models import Parlamentar, Partido |
|
|
from sapl.utils import YES_NO_CHOICES, make_choices, xstr |
|
|
from sapl.utils import YES_NO_CHOICES, xstr |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TipoMateriaLegislativa(models.Model): |
|
|
class TipoMateriaLegislativa(models.Model): |
|
@ -53,11 +54,11 @@ def texto_upload_path(instance, filename): |
|
|
return get_materia_media_path(instance, 'materia', filename) |
|
|
return get_materia_media_path(instance, 'materia', filename) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TIPO_APRESENTACAO_CHOICES = Choices(('O', 'oral', _('Oral')), |
|
|
|
|
|
('E', 'escrita', _('Escrita'))) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MateriaLegislativa(models.Model): |
|
|
class MateriaLegislativa(models.Model): |
|
|
TIPO_APRESENTACAO_CHOICES, ORAL, ESCRITA = make_choices( |
|
|
|
|
|
'O', _('Oral'), |
|
|
|
|
|
'E', _('Escrita'), |
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
tipo = models.ForeignKey(TipoMateriaLegislativa, verbose_name=_('Tipo')) |
|
|
tipo = models.ForeignKey(TipoMateriaLegislativa, verbose_name=_('Tipo')) |
|
|
numero = models.PositiveIntegerField(verbose_name=_('Número')) |
|
|
numero = models.PositiveIntegerField(verbose_name=_('Número')) |
|
@ -375,16 +376,11 @@ class Relatoria(models.Model): |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Parecer(models.Model): |
|
|
class Parecer(models.Model): |
|
|
APRESENTACAO_CHOICES, ORAL, ESCRITA = make_choices( |
|
|
|
|
|
'O', _('Oral'), |
|
|
|
|
|
'E', _('Escrita'), |
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
relatoria = models.ForeignKey(Relatoria) |
|
|
relatoria = models.ForeignKey(Relatoria) |
|
|
materia = models.ForeignKey(MateriaLegislativa) |
|
|
materia = models.ForeignKey(MateriaLegislativa) |
|
|
tipo_conclusao = models.CharField(max_length=3, blank=True) |
|
|
tipo_conclusao = models.CharField(max_length=3, blank=True) |
|
|
tipo_apresentacao = models.CharField( |
|
|
tipo_apresentacao = models.CharField( |
|
|
max_length=1, choices=APRESENTACAO_CHOICES) |
|
|
max_length=1, choices=TIPO_APRESENTACAO_CHOICES) |
|
|
parecer = models.TextField(blank=True) |
|
|
parecer = models.TextField(blank=True) |
|
|
|
|
|
|
|
|
class Meta: |
|
|
class Meta: |
|
@ -398,10 +394,8 @@ class Parecer(models.Model): |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TipoProposicao(models.Model): |
|
|
class TipoProposicao(models.Model): |
|
|
MAT_OU_DOC_CHOICES, MATERIA, DOCUMENTO = make_choices( |
|
|
MAT_OU_DOC_CHOICES = Choices(('M', 'materia', _('Matéria')), |
|
|
'M', _('Matéria'), |
|
|
('D', 'documento', _('Documento'))) |
|
|
'D', _('Documento'), |
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
descricao = models.CharField(max_length=50, verbose_name=_('Descrição')) |
|
|
descricao = models.CharField(max_length=50, verbose_name=_('Descrição')) |
|
|
materia_ou_documento = models.CharField( |
|
|
materia_ou_documento = models.CharField( |
|
@ -469,10 +463,8 @@ class Proposicao(models.Model): |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class StatusTramitacao(models.Model): |
|
|
class StatusTramitacao(models.Model): |
|
|
INDICADOR_CHOICES, FIM, RETORNO = make_choices( |
|
|
INDICADOR_CHOICES = Choices(('F', 'fim', _('Fim')), |
|
|
'F', _('Fim'), |
|
|
('R', 'retorno', _('Retorno'))) |
|
|
'R', _('Retorno'), |
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
sigla = models.CharField(max_length=10, verbose_name=_('Sigla')) |
|
|
sigla = models.CharField(max_length=10, verbose_name=_('Sigla')) |
|
|
descricao = models.CharField(max_length=60, verbose_name=_('Descrição')) |
|
|
descricao = models.CharField(max_length=60, verbose_name=_('Descrição')) |
|
@ -516,19 +508,16 @@ class UnidadeTramitacao(models.Model): |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Tramitacao(models.Model): |
|
|
class Tramitacao(models.Model): |
|
|
TURNO_CHOICES, \ |
|
|
TURNO_CHOICES = Choices( |
|
|
PRIMEIRO, SEGUNDO, UNICO, SUPLEMENTAR, FINAL, \ |
|
|
('P', 'primeiro', _('Primeiro')), |
|
|
VOTACAO_UNICA, PRIMEIRA_VOTACAO, \ |
|
|
('S', 'segundo', _('Segundo')), |
|
|
SEGUNDA_TERCEIRA_VOTACAO = make_choices( |
|
|
('Ú', 'unico', _('Único')), |
|
|
'P', _('Primeiro'), |
|
|
('L', 'suplementar', _('Suplementar')), |
|
|
'S', _('Segundo'), |
|
|
('F', 'final', _('Final')), |
|
|
'Ú', _('Único'), |
|
|
('A', 'votacao_unica', _('Votação única em Regime de Urgência')), |
|
|
'L', _('Suplementar'), |
|
|
('B', 'primeira_votacao', _('1ª Votação')), |
|
|
'F', _('Final'), |
|
|
('C', 'segunda_terceira_votacao', _('2ª e 3ª Votação')), |
|
|
'A', _('Votação única em Regime de Urgência'), |
|
|
) |
|
|
'B', _('1ª Votação'), |
|
|
|
|
|
'C', _('2ª e 3ª Votação'), |
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
status = models.ForeignKey( |
|
|
status = models.ForeignKey( |
|
|
StatusTramitacao, blank=True, null=True, verbose_name=_('Status')) |
|
|
StatusTramitacao, blank=True, null=True, verbose_name=_('Status')) |
|
|