Skip to content

Commit

Permalink
fix: cd_uo_aff_org not null in addressbook
Browse files Browse the repository at this point in the history
  • Loading branch information
francesco-filicetti committed Jul 15, 2024
1 parent c98d22a commit b8307b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ricerca_app/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -3415,7 +3415,7 @@ def getAddressbook(
'cd_uo_aff_org__cd_tipo_nodo',
'dt_rap_ini',
'sede'
).distinct()
).filter(cd_uo_aff_org__isnull=False).distinct()

ruoli_dict = {}
for r in ruoli:
Expand Down Expand Up @@ -3730,7 +3730,7 @@ def getPersonale(personale_id, full=False):
'ds_aff_org',
'cd_uo_aff_org__cd_tipo_nodo',
'dt_rap_ini'
).distinct()
).filter(cd_uo_aff_org__isnull=False).distinct()

priorita_tmp = PersonalePrioritaRuolo.objects.values(
'cd_ruolo',
Expand Down

0 comments on commit b8307b8

Please sign in to comment.