|
@ -882,18 +882,27 @@ class RelatorioPresencaSessaoFilterSet(django_filters.FilterSet): |
|
|
super(RelatorioPresencaSessaoFilterSet, self).__init__( |
|
|
super(RelatorioPresencaSessaoFilterSet, self).__init__( |
|
|
*args, **kwargs) |
|
|
*args, **kwargs) |
|
|
|
|
|
|
|
|
|
|
|
self.form.fields['exibir_ordem_dia'] = forms.BooleanField(required=False, |
|
|
|
|
|
label='Exibir presença das Ordens do Dia') |
|
|
|
|
|
self.form.initial['exibir_ordem_dia'] = True |
|
|
|
|
|
|
|
|
self.filters['data_inicio'].label = 'Período (Inicial - Final)' |
|
|
self.filters['data_inicio'].label = 'Período (Inicial - Final)' |
|
|
|
|
|
|
|
|
|
|
|
tipo_sessao_ordinaria = self.filters['tipo'].queryset.filter(nome='Ordinária') |
|
|
|
|
|
if tipo_sessao_ordinaria: |
|
|
|
|
|
self.form.initial['tipo'] = tipo_sessao_ordinaria.first() |
|
|
|
|
|
|
|
|
row1 = to_row([('data_inicio', 12)]) |
|
|
row1 = to_row([('data_inicio', 12)]) |
|
|
row2 = to_row([('legislatura', 4), |
|
|
row2 = to_row([('legislatura', 4), |
|
|
('sessao_legislativa', 4), |
|
|
('sessao_legislativa', 4), |
|
|
('tipo', 4)]) |
|
|
('tipo', 4)]) |
|
|
|
|
|
row3 = to_row([('exibir_ordem_dia', 12)]) |
|
|
|
|
|
|
|
|
self.form.helper = SaplFormHelper() |
|
|
self.form.helper = SaplFormHelper() |
|
|
self.form.helper.form_method = 'GET' |
|
|
self.form.helper.form_method = 'GET' |
|
|
self.form.helper.layout = Layout( |
|
|
self.form.helper.layout = Layout( |
|
|
Fieldset(_('Presença dos parlamentares nas sessões plenárias'), |
|
|
Fieldset(_('Presença dos parlamentares nas sessões plenárias'), |
|
|
row1, row2, form_actions(label='Pesquisar')) |
|
|
row1, row2, row3, form_actions(label='Pesquisar')) |
|
|
) |
|
|
) |
|
|
|
|
|
|
|
|
@property |
|
|
@property |
|
|