Skip to content

Commit

Permalink
fix: bug
Browse files Browse the repository at this point in the history
  • Loading branch information
francesco-filicetti committed Nov 2, 2023
1 parent 758abde commit 2998b42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uniticket/uni_ticket/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1351,7 +1351,7 @@ def get_ticket_in_office_list(offices_list,
q_only_open = Q(ticket__is_closed=False) if only_open_tickets else Q()
ticket_assignments = TicketAssignment.objects.filter(
q_only_open,
office__in=office_list,
office__in=offices_list,
office__is_active=True
).values("ticket__code", "follow")
ticket_set = set()
Expand Down

0 comments on commit 2998b42

Please sign in to comment.