Browse Source

corrige erro no filtro de possíveis autores

pull/2444/head
Leandro Roberto 6 years ago
parent
commit
0124d4daee
  1. 10
      sapl/api/forms.py

10
sapl/api/forms.py

@ -160,14 +160,12 @@ class AutoresPossiveisFilterSet(FilterSet):
tipo = self.form.cleaned_data['tipo'] \ tipo = self.form.cleaned_data['tipo'] \
if 'tipo' in self.form.cleaned_data else None if 'tipo' in self.form.cleaned_data else None
if not tipo and not data_relativa: if not tipo:
return qs return qs
if tipo: tipo = TipoAutor.objects.get(pk=tipo)
# não precisa de try except, já foi validado em filter_tipo if not tipo.content_type:
tipo = TipoAutor.objects.get(pk=tipo) return qs
if not tipo.content_type:
return qs
filter_for_model = 'filter_%s' % tipo.content_type.model filter_for_model = 'filter_%s' % tipo.content_type.model

Loading…
Cancel
Save