Merge branch 'master_xieqiyu_6948' into 'master'

* Fix bug#6948.

See merge request easycorp/zentaopms!2751
This commit is contained in:
孙广明
2022-04-06 00:51:24 +00:00
+1 -1
View File
@@ -125,7 +125,7 @@ class programplan extends control
$this->programplan->create($projectID, $this->productID, $planID);
if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError()));
$locate = $this->createLink('project', 'execution', "status=all&projectID=$projectID");
$locate = $this->createLink('project', 'execution', "status=all&projectID=$projectID&orderBy=order_asc&productID=$productID");
return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => $locate));
}