|
|
@ -1239,6 +1239,9 @@ class MateriaLegislativaPesquisaView(FilterView): |
|
|
|
self.object_list = self.filterset.qs.order_by( |
|
|
|
'tipo', 'numero', 'ano') |
|
|
|
|
|
|
|
if (self.filterset.data and |
|
|
|
self.filterset.data.get('numero') is not None): |
|
|
|
|
|
|
|
numero = self.filterset.data.get('numero') |
|
|
|
numero_protocolo = self.filterset.data.get('numero_protocolo') |
|
|
|
ano = self.filterset.data.get('ano') |
|
|
@ -1248,7 +1251,8 @@ class MateriaLegislativaPesquisaView(FilterView): |
|
|
|
autor = self.filterset.data.get('autoria__autor') |
|
|
|
tipo_autor = self.filterset.data.get('autoria__autor__tipo') |
|
|
|
partido = self.filterset.data.get('autoria__partido') |
|
|
|
relatoria = self.filterset.data.get('relatoria__parlamentar__id') |
|
|
|
relatoria = self.filterset.data.get( |
|
|
|
'relatoria__parlamentar__id') |
|
|
|
origem = self.filterset.data.get('local_origem_externa') |
|
|
|
destino = self.filterset.data.get( |
|
|
|
'tramitacao__unidade_tramitacao_destino') |
|
|
@ -1256,8 +1260,8 @@ class MateriaLegislativaPesquisaView(FilterView): |
|
|
|
em_tram = self.filterset.data.get('em_tramitacao') |
|
|
|
ementa = self.filterset.data.get('ementa') |
|
|
|
|
|
|
|
u1 = "&numero="+numero+"&numero_protocolo="+numero_protocolo+"&" |
|
|
|
u2 = "ano="+ano+"&tipo="+tipo+"&data_apresentacao="+data_a+"&" |
|
|
|
u1 = "&numero="+numero+"&numero_protocolo="+numero_protocolo |
|
|
|
u2 = "&ano="+ano+"&tipo="+tipo+"&data_apresentacao="+data_a+"&" |
|
|
|
u3 = "data_publicacao="+data_p+"&autoria__autor="+autor+"&" |
|
|
|
u4 = "autoria__autor__tipo="+tipo_autor+"&" |
|
|
|
u5 = "autoria__partido="+partido+"&" |
|
|
@ -1269,6 +1273,9 @@ class MateriaLegislativaPesquisaView(FilterView): |
|
|
|
|
|
|
|
url = u1+u2+u3+u4+u5+u6+u7+u8+u9+u10 |
|
|
|
|
|
|
|
else: |
|
|
|
url = '' |
|
|
|
|
|
|
|
context = self.get_context_data(filter=self.filterset, |
|
|
|
object_list=self.object_list, |
|
|
|
filter_url=url |
|
|
|