|
|
@ -606,7 +606,7 @@ class OradorForm(ModelForm): |
|
|
|
def __init__(self, *args, **kwargs): |
|
|
|
super().__init__(*args, **kwargs) |
|
|
|
self.fields['parlamentar'].queryset = \ |
|
|
|
Parlamentar.objects.filter(ativo=True).order_by('nome_parlamentar') |
|
|
|
Parlamentar.objects.filter(mandato__legislatura__sessaoplenaria=self.initial['id_sessao'], ativo=True).order_by('nome_parlamentar') |
|
|
|
|
|
|
|
def clean(self): |
|
|
|
super(OradorForm, self).clean() |
|
|
@ -643,12 +643,8 @@ class OradorForm(ModelForm): |
|
|
|
class OradorExpedienteForm(ModelForm): |
|
|
|
def __init__(self, *args, **kwargs): |
|
|
|
super().__init__(*args, **kwargs) |
|
|
|
id_sessao = int(self.initial['id_sessao']) |
|
|
|
sessao = SessaoPlenaria.objects.get(id=id_sessao) |
|
|
|
legislatura_vigente = sessao.legislatura |
|
|
|
self.fields['parlamentar'].queryset = \ |
|
|
|
Parlamentar.objects.filter(mandato__legislatura=legislatura_vigente, |
|
|
|
ativo=True).order_by('nome_parlamentar') |
|
|
|
Parlamentar.objects.filter(mandato__legislatura__sessaoplenaria=self.initial['id_sessao'], ativo=True).order_by('nome_parlamentar') |
|
|
|
|
|
|
|
def clean(self): |
|
|
|
super(OradorExpedienteForm, self).clean() |
|
|
@ -683,12 +679,8 @@ class OradorExpedienteForm(ModelForm): |
|
|
|
class OradorOrdemDiaForm(ModelForm): |
|
|
|
def __init__(self, *args, **kwargs): |
|
|
|
super().__init__(*args, **kwargs) |
|
|
|
id_sessao = int(self.initial['id_sessao']) |
|
|
|
sessao = SessaoPlenaria.objects.get(id=id_sessao) |
|
|
|
legislatura_vigente = sessao.legislatura |
|
|
|
self.fields['parlamentar'].queryset = \ |
|
|
|
Parlamentar.objects.filter(mandato__legislatura=legislatura_vigente, |
|
|
|
ativo=True).order_by('nome_parlamentar') |
|
|
|
Parlamentar.objects.filter(mandato__legislatura__sessaoplenaria=self.initial['id_sessao'], ativo=True).order_by('nome_parlamentar') |
|
|
|
|
|
|
|
def clean(self): |
|
|
|
super(OradorOrdemDiaForm, self).clean() |
|
|
|