From 75045627235a5f842b7761530985605f4cd1628a Mon Sep 17 00:00:00 2001 From: songchenxuan Date: Fri, 9 Jun 2023 15:56:18 +0800 Subject: [PATCH] * Modify copy team to 11 select (1 project and 10 execution) when create execution. --- 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 bbb2e7c6ad..bf4723e838 100755 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -3651,7 +3651,7 @@ class executionModel extends model ->markRight(1) ->orWhere('id')->eq($projectID) ->orderBy('type_asc,openedDate_desc') - ->limit('9') + ->limit('11') ->fetchPairs(); $countPairs = $this->dao->select('root, COUNT(*) as count')->from(TABLE_TEAM)