From a7c944d3e52affb49110b1f2b411782db355550e Mon Sep 17 00:00:00 2001 From: liumengyi Date: Tue, 18 Jan 2022 13:16:20 +0800 Subject: [PATCH] * Fix bug #18629. --- module/execution/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/control.php b/module/execution/control.php index ec5fdb6b35..b981787d00 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -125,7 +125,7 @@ class execution extends control /* Get products by execution. */ $execution = $this->commonAction($executionID, $status); - if($execution->type == 'kanban') $this->locate($this->createLink('execution', 'kanban', "executionID=$executionID")); + if($execution->type == 'kanban') $this->locate($this->createLink('execution', 'kanban', "executionID=$execution->id")); $executionID = $execution->id; $products = $this->product->getProductPairsByProject($executionID);