This commit is contained in:
tianshujie
2024-02-22 15:57:26 +08:00
parent 2415a0849d
commit db4c3289e4
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -2671,7 +2671,8 @@ class execution extends control
if(dao::isError()) return $this->sendError(dao::getError());
$this->loadModel('action')->create('story', $storyID, 'estimated', '', $executionID);
return $this->sendSuccess(array('load' => true, 'closeModal' => true));
$link = $this->createLink('execution', 'storyEstimate', "executionID={$executionID}&storyID={$storyID}&round={$round}");
return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'callback' => "loadModal(\"$link\", '#storyEstimateModal');"));
}
$estimateInfo = $this->story->getEstimateInfo($storyID, $round);