From a13b5c3c9f7564659ecf824fdb3c61cd82fb9c2b Mon Sep 17 00:00:00 2001 From: 27942 Date: Thu, 25 Dec 2025 10:54:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=20=E5=88=A0=E9=99=A4?= =?UTF-8?q?=E9=A2=84=E7=AB=8B=E6=A1=88=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- business/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/business/views.py b/business/views.py index 47c8b89..75d4732 100644 --- a/business/views.py +++ b/business/views.py @@ -88,7 +88,7 @@ class registrationDetail(APIView): if Undertaker: Q_obj &= Q(Undertaker__icontains=Undertaker) - pre = PreFiling.objects.filter(Q_obj) + pre = PreFiling.objects.filter(Q_obj).order_by('-id') total = len(pre) paginator = Paginator(pre, per_page)