|
|
@ -605,8 +605,12 @@ class AdicionarVariasMateriasFilterSet(MateriaLegislativaFilterSet): |
|
|
|
class OradorForm(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(ativo=True).order_by('nome_parlamentar') |
|
|
|
Parlamentar.objects.filter(mandato__legislatura=legislatura_vigente, |
|
|
|
ativo=True).order_by('nome_parlamentar') |
|
|
|
|
|
|
|
def clean(self): |
|
|
|
super(OradorForm, self).clean() |
|
|
|