From 7f1daea1293e507bbaae2cb1c685d42559de6644 Mon Sep 17 00:00:00 2001 From: Edward Oliveira Date: Wed, 21 Sep 2022 11:07:57 -0300 Subject: [PATCH] Conserta listagem de parlamentares --- sapl/sessao/forms.py | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/sapl/sessao/forms.py b/sapl/sessao/forms.py index 42a51ed5d..8fef2e0d8 100644 --- a/sapl/sessao/forms.py +++ b/sapl/sessao/forms.py @@ -646,9 +646,16 @@ def __init__(self, *args, **kwargs): class OradorForm(ModelForm): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) + + sessao = SessaoPlenaria.objects.get(id=self.initial['id_sessao']) self.fields['parlamentar'].queryset = \ Parlamentar.objects.filter( - mandato__legislatura__sessaoplenaria=self.initial['id_sessao'], ativo=True).order_by('nome_parlamentar') + mandato__data_inicio_mandato__isnull=False, + mandato__data_fim_mandato__isnull=False, + mandato__data_inicio_mandato__lte=sessao.data_inicio, + mandato__data_fim_mandato__gte=sessao.data_inicio, + ativo=True + ).distinct().order_by('nome_parlamentar') def clean(self): super(OradorForm, self).clean() @@ -687,7 +694,12 @@ def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.fields['parlamentar'].queryset = \ Parlamentar.objects.filter( - mandato__legislatura__sessaoplenaria=self.initial['id_sessao'], ativo=True).order_by('nome_parlamentar') + mandato__data_inicio_mandato__isnull=False, + mandato__data_fim_mandato__isnull=False, + mandato__data_inicio_mandato__lte=sessao.data_inicio, + mandato__data_fim_mandato__gte=sessao.data_inicio, + ativo=True + ).distinct().order_by('nome_parlamentar') def clean(self): super(OradorExpedienteForm, self).clean()