mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 16:03:19 +01:00
Fix issue #129 - can not 'unassign' tickets. Thanks to
lukeman for the patch.
This commit is contained in:
parent
dfc2a2f768
commit
776f125542
@ -41,3 +41,6 @@ Andreas Kotowicz.
|
|||||||
2009-01-20 r151 Issue #128 If queue name has a dash in it, email imported failed. Thanks to enix.org for the patch.
|
2009-01-20 r151 Issue #128 If queue name has a dash in it, email imported failed. Thanks to enix.org for the patch.
|
||||||
|
|
||||||
2010-01-21 r152 Fix indentation error caused by issue #126.
|
2010-01-21 r152 Fix indentation error caused by issue #126.
|
||||||
|
|
||||||
|
2010-01-26 r153 Fix issue #129 - can not 'unassign' tickets. Thanks to
|
||||||
|
lukeman for the patch.
|
||||||
|
@ -154,7 +154,7 @@ def update_ticket(request, ticket_id, public=False):
|
|||||||
context = safe_template_context(ticket)
|
context = safe_template_context(ticket)
|
||||||
comment = loader.get_template_from_string(comment).render(Context(context))
|
comment = loader.get_template_from_string(comment).render(Context(context))
|
||||||
|
|
||||||
if not owner and ticket.assigned_to:
|
if owner is None and ticket.assigned_to:
|
||||||
owner = ticket.assigned_to.id
|
owner = ticket.assigned_to.id
|
||||||
|
|
||||||
f = FollowUp(ticket=ticket, date=datetime.now(), comment=comment)
|
f = FollowUp(ticket=ticket, date=datetime.now(), comment=comment)
|
||||||
@ -166,7 +166,7 @@ def update_ticket(request, ticket_id, public=False):
|
|||||||
|
|
||||||
reassigned = False
|
reassigned = False
|
||||||
|
|
||||||
if owner:
|
if owner is not None:
|
||||||
if owner != 0 and ((ticket.assigned_to and owner != ticket.assigned_to.id) or not ticket.assigned_to):
|
if owner != 0 and ((ticket.assigned_to and owner != ticket.assigned_to.id) or not ticket.assigned_to):
|
||||||
new_user = User.objects.get(id=owner)
|
new_user = User.objects.get(id=owner)
|
||||||
f.title = _('Assigned to %(username)s') % {
|
f.title = _('Assigned to %(username)s') % {
|
||||||
|
Loading…
Reference in New Issue
Block a user