This commit is contained in:
孙华伟
2022-02-24 15:08:20 +08:00
parent af6e121c60
commit 890532c727
3 changed files with 5 additions and 8 deletions

View File

@@ -818,11 +818,8 @@ class execution extends control
if($param)
$this->session->set('executionStoryBrowseParam', $param);
a($param);
if(isset($_GET['param']))
$isAllProduct = $param;
else
$isAllProduct = $this->session->executionStoryBrowseParam;
if(isset($_GET['param'])) $isAllProduct = $param;
else $isAllProduct = $this->session->executionStoryBrowseParam;
/* Assign. */
$this->view->title = $title;
@@ -849,7 +846,7 @@ class execution extends control
$this->view->branchGroups = $branchGroups;
$this->view->canBeChanged = common::canModify('execution', $execution); // Determines whether an object is editable.
$this->view->showBranch = $showBranch;
a('param:'.$this->view->param.'products:'.count($products));
$this->display();
}