From d8d9d6fb6a4f8653e06ac10f41bba67cbe59bb35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E5=B9=BF=E6=98=8E?= Date: Fri, 31 Oct 2025 15:59:15 +0800 Subject: [PATCH] * [misc] modify task order. --- module/execution/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/model.php b/module/execution/model.php index a596883e50..a3cba0e5c8 100755 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -2066,7 +2066,7 @@ class executionModel extends model ->where('t1.deleted')->eq(0) ->beginIF($filterStatus)->andWhere('t1.status')->notin('closed,cancel')->fi() ->andWhere('t1.execution')->in($executionIdList) - ->orderBy('t1.order_asc, t1.id_desc') + ->orderBy('t1.order_asc, t1.id_asc') ->fetchGroup('execution', 'id'); $begin = $end = helper::today();