Skip to content

Commit

Permalink
fix: bug
Browse files Browse the repository at this point in the history
  • Loading branch information
francesco-filicetti committed Oct 13, 2023
1 parent c38a48c commit 5ebfd91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uniticket/uni_ticket/views/management.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ def tickets(request, structure_slug, structure, office_employee=None):
unassigned = True
# chiusi = Ticket.objects.filter(code__in=ticket_list, is_closed=True)
# chiusi = tickets.filter(is_closed=True).count()
ticket_codes = not_closed.values_list('ticket__code', flat=True)
ticket_codes = not_closed.values_list('code', flat=True)
# if user is manager
else:
assignments = TicketAssignment.objects.filter(
Expand Down

0 comments on commit 5ebfd91

Please sign in to comment.