Browse Source

fix #2407 (#2408)

pull/2409/head
Victor Fabre 6 years ago
committed by Edward
parent
commit
4e91f84b2c
  1. 2
      sapl/parlamentares/views.py

2
sapl/parlamentares/views.py

@ -498,7 +498,7 @@ class ParlamentarCrud(Crud):
if legislatura_id >= 0:
return queryset.filter(
mandato__legislatura_id=legislatura_id).annotate(
mandato_titular=F('mandato__titular'))
mandato_titular=F('mandato__titular')).distinct()
else:
try:
self.logger.debug("user=" + username + ". Tentando obter o mais recente registro do objeto Legislatura.")

Loading…
Cancel
Save