* Add excludeStatus for release.

This commit is contained in:
songchenxuan
2023-08-03 14:36:33 +08:00
parent 752365514b
commit d3d303ba41
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -635,7 +635,7 @@ class projectrelease extends control
}
else
{
$allStories = $this->story->getExecutionStories($executionIdList, $release->product, 0, 't1.`order`_desc', 'byBranch', $release->branch, 'story', $release->stories, '', $pager);
$allStories = $this->story->getExecutionStories($executionIdList, $release->product, 0, 't1.`order`_desc', 'byBranch', $release->branch, 'story', $release->stories, 'draft,reviewing,changing', $pager);
}
$this->view->allStories = $allStories;
+1 -1
View File
@@ -560,7 +560,7 @@ class release extends control
}
else
{
$allStories = $this->story->getExecutionStories($executionIdList, $release->product, 0, 't1.`order`_desc', 'byBranch', $release->branch, 'story', $release->stories, '', $pager);
$allStories = $this->story->getExecutionStories($executionIdList, $release->product, 0, 't1.`order`_desc', 'byBranch', $release->branch, 'story', $release->stories, 'draft,reviewing,changing', $pager);
}
$this->view->allStories = $allStories;