From e461fbdf50adc73f00cb40ebbef0a1732987cade Mon Sep 17 00:00:00 2001 From: xinwen Date: Wed, 16 Sep 2020 15:47:35 +0800 Subject: [PATCH] =?UTF-8?q?fix(tickets):=20=E4=BF=AE=E5=A4=8D=E5=B7=B2?= =?UTF-8?q?=E5=A4=84=E7=90=86=E5=B7=A5=E5=8D=95=E7=9A=84=20=E5=BE=85?= =?UTF-8?q?=E5=A4=84=E7=90=86=E4=BA=BA=20=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/tickets/models/ticket.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/tickets/models/ticket.py b/apps/tickets/models/ticket.py index f52172fb3..877dca1f7 100644 --- a/apps/tickets/models/ticket.py +++ b/apps/tickets/models/ticket.py @@ -79,7 +79,6 @@ class Ticket(OrgModelMixin, CommonModelMixin): ) self.status = status self.assignee = user - self.assignees_display = str(user) self.save() def create_comment(self, action_display, user, extra_comment=None): @@ -97,7 +96,6 @@ class Ticket(OrgModelMixin, CommonModelMixin): self.action = action self.status = self.STATUS.CLOSED self.assignee = user - self.assignees_display = str(user) self.save() def is_assignee(self, user):