From 088676d99889e030cdf5c68d070326866b660f7c Mon Sep 17 00:00:00 2001 From: xinwen Date: Fri, 14 Jan 2022 10:51:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=AE=A1=E7=AE=97=E5=B7=A5=E5=8D=95?= =?UTF-8?q?=E5=BA=8F=E5=8F=B7=E7=9A=84=E6=97=B6=E5=80=99=E5=88=87=E6=8D=A2?= =?UTF-8?q?=E5=88=B0root=E7=BB=84=E7=BB=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/tickets/models/ticket.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/tickets/models/ticket.py b/apps/tickets/models/ticket.py index fb6e15222..f61870f55 100644 --- a/apps/tickets/models/ticket.py +++ b/apps/tickets/models/ticket.py @@ -261,7 +261,7 @@ class Ticket(CommonModelMixin, OrgModelMixin): date_created = as_current_tz(self.date_created) date_prefix = date_created.strftime('%Y%m%d') - ticket = Ticket.objects.select_for_update().filter( + ticket = Ticket.all().select_for_update().filter( serial_num__startswith=date_prefix ).order_by('-date_created').first()