From 66cd6e95a83a2f898e6641c182b9b29a97cf4919 Mon Sep 17 00:00:00 2001 From: wangruidong <940853815@qq.com> Date: Fri, 14 Jun 2024 17:35:08 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=8E=B7=E5=8F=96=E8=B4=A6=E5=8F=B7?= =?UTF-8?q?=E6=94=B9=E5=AF=86=E7=9A=84=E4=BB=BB=E5=8A=A1=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E8=B6=85=E6=97=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/assets/models/automations/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/assets/models/automations/base.py b/apps/assets/models/automations/base.py index c3e1fa639..da0f73a1e 100644 --- a/apps/assets/models/automations/base.py +++ b/apps/assets/models/automations/base.py @@ -123,7 +123,7 @@ class AutomationExecution(OrgModelMixin): ) class Meta: - ordering = ('-date_start',) + ordering = ('org_id', '-date_start',) verbose_name = _('Automation task execution') @property