Merge branch 'sprint/add-taskrestart' into 'master'

* Support task restart api.

See merge request easycorp/zentaopms!6067
This commit is contained in:
朱金勇
2022-11-07 08:59:03 +00:00
2 changed files with 44 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
<?php
/**
* The task start entry point of ZenTaoPMS.
*
* @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
* @author Lu Fei <lufei@easycorp.ltd>
* @package entries
* @version 1
* @link http://www.zentao.net
*/
class taskRestartEntry extends entry
{
/**
* POST method.
*
* @param int $taskID
* @access public
* @return string
*/
public function post($taskID)
{
$task = $this->loadModel('task')->getByID($taskID);
$fields = 'assignedTo,realStarted';
$this->batchSetPost($fields, $task);
$fields = 'consumed,left,comment';
$this->batchSetPost($fields);
$control = $this->loadController('task', 'restart');
$this->requireFields('consumed,left');
$control->restart($taskID);
$data = $this->getData();
if(!$data) return $this->send400('error');
if(isset($data->result) and $data->result == 'fail') return $this->sendError(zget($data, 'code', 400), $data->message);
$task = $this->loadModel('task')->getByID($taskID);
return $this->send(200, $task);
}
}
+1
View File
@@ -90,6 +90,7 @@ $routes['/tasks/:id'] = 'task';
$routes['/tasks/:id/assignto'] = 'taskAssignTo';
$routes['/tasks/:id/start'] = 'taskStart';
$routes['/tasks/:id/pause'] = 'taskPause';
$routes['/tasks/:id/restart'] = 'taskRestart';
$routes['/tasks/:id/finish'] = 'taskFinish';
$routes['/tasks/:id/close'] = 'taskClose';
$routes['/tasks/:id/estimate'] = 'taskRecordEstimate';