* @package programplan * @version $Id: control.php 5107 2013-07-12 01:46:12Z chencongzhi520@gmail.com $ * @link http://www.zentao.net */ class programplan extends control { /** * Common action. * * @param int $projectID * @param int $productID * @param string $extra * @access public * @return void */ public function commonAction($projectID, $productID = 0, $extra = '') { $products = $this->loadModel('product')->getProductPairsByProject($projectID); $productID = $this->product->saveState($productID, $products); $project = $this->loadModel('project')->getByID($projectID); $this->session->set('hasProduct', $project->hasProduct); $this->project->setMenu($projectID); } /** * Browse program plans. * * @param int $projectID * @param int $productID * @param string $type * @param string $orderBy * @param int $baselineID * @access public * @return void */ public function browse($projectID = 0, $productID = 0, $type = 'gantt', $orderBy = 'id_asc', $baselineID = 0) { $this->app->loadLang('stage'); $this->commonAction($projectID, $productID, $type); $this->session->set('projectPlanList', $this->app->getURI(true), 'project'); if(!defined('RUN_MODE') || RUN_MODE != 'api') $projectID = $this->project->saveState((int)$projectID, $this->project->getPairsByProgram()); $products = $this->loadModel('product')->getProducts($projectID); if($this->session->hasProduct) $this->lang->modulePageNav = $this->product->select($products, $productID, 'programplan', 'browse', $type, 0, 0, '', false); $selectCustom = 0; // Display date and task settings. $dateDetails = 1; // Gantt chart detail date display. if($type == 'gantt') { $this->loadModel('setting'); $owner = $this->app->user->account; $module = 'programplan'; $section = 'browse'; $object = 'stageCustom'; if(!isset($this->config->programplan->browse->stageCustom)) $this->setting->setItem("$owner.$module.browse.stageCustom", 'date,task'); $selectCustom = $this->setting->getItem("owner={$owner}&module={$module}§ion={$section}&key={$object}"); if(strpos($selectCustom, 'date') !== false) $dateDetails = 0; $plans = $this->programplan->getDataForGantt($projectID, $productID, $baselineID, $selectCustom, false); /* Set Custom. */ foreach(explode(',', $this->config->programplan->custom->customGanttFields) as $field) $customFields[$field] = $this->lang->programplan->ganttCustom[$field]; $this->view->customFields = $customFields; $this->view->showFields = $this->config->programplan->ganttCustom->ganttFields; } if($type == 'assignedTo') { $owner = $this->app->user->account; $module = 'programplan'; $section = 'browse'; $object = 'stageCustom'; $selectCustom = $this->loadModel('setting')->getItem("owner={$owner}&module={$module}§ion={$section}&key={$object}"); if(strpos($selectCustom, 'date') !== false) $dateDetails = 0; $plans = $this->programplan->getDataForGanttGroupByAssignedTo($projectID, $productID, $baselineID, $selectCustom, false); /* Set Custom. */ foreach(explode(',', $this->config->programplan->custom->customGanttFields) as $field) $customFields[$field] = $this->lang->programplan->ganttCustom[$field]; $this->view->customFields = $customFields; $this->view->showFields = $this->config->programplan->ganttCustom->ganttFields; } if($type == 'lists') { $sort = common::appendOrder($orderBy); $this->loadModel('datatable'); $plans = $this->programplan->getPlans($projectID, $productID, $sort); } $zooming = !empty($this->config->programplan->ganttCustom->zooming) ? $this->config->programplan->ganttCustom->zooming : 'day'; $this->view->title = $this->lang->programplan->browse; $this->view->position[] = $this->lang->programplan->browse; $this->view->projectID = $projectID; $this->view->project = $this->project->getByID($projectID); $this->view->productID = $productID; $this->view->product = $this->product->getByID($productID); $this->view->productList = $this->product->getProductPairsByProject($projectID, 'all', '', false); $this->view->type = $type; $this->view->plans = $plans; $this->view->orderBy = $orderBy; $this->view->selectCustom = $selectCustom; $this->view->dateDetails = $dateDetails; $this->view->users = $this->loadModel('user')->getPairs('noletter'); $this->view->zooming = $zooming; $this->view->ganttType = $type; $this->display(); } /** * 创建一个项目阶段。 * Create a project plan/phase. * * @param string $projectID * @param string $productID * @param string $planID * @param string $executionType * @access public * @return void */ public function create(string $projectID = 0, string $productID = 0, string $planID = 0,string $executionType = 'stage'): void { $projectID = (int) $projectID; $productID = (int) $productID; $planID = (int) $planID; $this->commonAction($projectID, $productID); if($_POST) { $formData = form::data($this->config->programplan->create->form); $this->programplan->create($formData, $projectID, $productID, $planID); if(dao::isError()) { $errors = dao::getError(); if(isset($errors['message'])) return $this->send(array('result' => 'fail', 'message' => $errors)); if(!isset($errors['message'])) return $this->send(array('result' => 'fail', 'callback' => array('name' => 'addRowErrors', 'params' => array($errors)))); } $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)); } $this->app->loadLang('stage'); $project = $this->project->getById($projectID); $programPlan = $this->project->getById($planID, 'stage'); $productList = array(); if($this->session->hasProduct) $productList = $this->product->getProductPairsByProject($projectID); $executions = !empty($planID) ? $this->loadModel('execution')->getChildExecutions($planID, 'order_asc') : array(); $plans = $this->programplan->getStage($planID ? $planID : $projectID, $productID, 'parent', 'order_asc'); if(!empty($planID) and !empty($plans) and $project->model == 'waterfallplus') { $executionType = 'stage'; unset($this->lang->programplan->typeList['agileplus']); } if(!empty($planID) and !empty($executions) and empty($plans) and $project->model == 'waterfallplus') { $executionType = 'agileplus'; unset($this->lang->programplan->typeList['stage']); } $visibleFields = array(); $requiredFields = array(); $custom = $executionType == 'stage' ? 'custom' : 'customAgilePlus'; $customCreateFields = $executionType == 'stage' ? 'customCreateFields' : 'customAgilePlusCreateFields'; foreach(explode(',', $this->config->programplan->$customCreateFields) as $field) $customFields[$field] = $this->lang->programplan->$field; $showFields = $this->config->programplan->$custom->createFields; foreach(explode(',', $showFields) as $field) { if($field) $visibleFields[$field] = ''; } foreach(explode(',', $this->config->programplan->create->requiredFields) as $field) { if($field) { $requiredFields[$field] = ''; if(strpos(",{$this->config->programplan->$customCreateFields},", ",{$field},") !== false) $visibleFields[$field] = ''; } } if(empty($this->config->setPercent)) unset($visibleFields['percent'], $requiredFields['percent']); if($executionType != 'stage') unset($this->lang->execution->typeList[''], $this->lang->execution->typeList['stage']); $this->view->title = $this->lang->programplan->create . $this->lang->colon . $project->name; $this->view->position[] = html::a($this->createLink('programplan', 'browse', "projectID=$projectID"), $project->name); $this->view->position[] = $this->lang->programplan->create; $this->view->productList = $productList; $this->view->project = $project; $this->view->productID = $productID ? $productID : key($productList); $this->view->stages = empty($planID) ? $this->loadModel('stage')->getStages('id_asc', 0, $project->model) : array(); $this->view->programPlan = $programPlan; $this->view->plans = empty($executions) ? $plans : $executions; $this->view->planID = $planID; $this->view->type = 'lists'; $this->view->executionType = $executionType; $this->view->PMUsers = $this->loadModel('user')->getPairs('noclosed|nodeleted|pmfirst', $project->PM); $this->view->custom = $custom; $this->view->customFields = $customFields; $this->view->showFields = $showFields; $this->view->visibleFields = $visibleFields; $this->view->requiredFields = $requiredFields; $this->view->colspan = count($visibleFields) + 3; $this->view->enableOptionalAttr = (empty($programPlan) or (!empty($programPlan) and $programPlan->attribute == 'mix')); $this->display(); } /** * 编辑阶段内容。 * Edit a project plan. * * @param string $planID * @param string $projectID * @access public * @return void */ public function edit(string $planID = '0', string $projectID = '0') { $planID = (int)$planID; $projectID = (int)$projectID; $plan = $this->programplan->getByID($planID); if($_POST) { $formData = form::data($this->config->programplan->edit->form); $postData = $this->programplanZen->beforeEdit($formData); $postData->id = $planID; $changes = $this->programplan->update($planID, $projectID, $postData); if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError())); if($changes) $this->programplanZen->afterEdit($plan, $changes); $locate = isonlybody() ? 'parent' : inlink('browse', "program=$plan->program&type=lists"); return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => $locate)); } $this->programplanZen->buildEditView($plan); } /** * 通过ajax请求保存自定义设置。 * Save custom settings via ajax. * * @access public * @return void */ public function ajaxCustom() { $owner = $this->app->user->account; $module = 'programplan'; $this->app->loadLang('execution'); $this->loadModel('datatable'); $this->loadModel('setting'); if($_POST) { $formData = form::data($this->config->product->form->create); $this->programplanZen->beforeAjaxCustom($formData, $owner, $module); return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => 'parent')); } /* Set Custom. */ foreach(explode(',', $this->config->programplan->custom->customGanttFields) as $field) $customFields[$field] = $this->lang->programplan->ganttCustom[$field]; $this->programplanZen->buildAjaxCustomView($owner, $module, $customFields); } /** * 处理甘特图拖拽事件数据。 * Response gantt drag event. * * @access public */ public function ajaxResponseGanttDragEvent() { if(empty($_POST['id']) || empty($_POST['type'])) return $this->send(array('result' => 'fail', 'message' => '')); $objectID = $_POST['id']; $objectType = $_POST['type']; $this->loadModel('task')->updateEsDateByGantt($objectID, $objectType); if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError())); return $this->send(array('result' => 'success')); } /** * 处理甘特图移动事件数据。 * Response gantt move event. * * @access public */ public function ajaxResponseGanttMoveEvent() { if(empty($_POST['id'])) return $this->send(array('result' => 'fail', 'message' => '')); $idList = explode('-', $_POST['id']); $taskID = !empty($idList[1]) ? $idList[1] : 0; if(empty($taskID)) return $this->send(array('result' => 'fail', 'message' => '')); $this->loadModel('task')->updateOrderByGantt(); if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError())); $this->loadModel('action')->create('task', $taskID, 'ganttMove'); return $this->send(array('result' => 'success')); } /** * ajax请求:获取阶段ID的属性。 * AJAX: Get stageID attributes. * * @param int $stageID * @param string $attribute * @access public * @return int */ public function ajaxGetAttribute(int $stageID, string $attribute): int { $this->app->loadLang('stage'); $stageAttribute = $this->programplan->getStageAttribute($stageID); if(empty($stageAttribute) || $stageAttribute == 'mix') { return print(html::select('attribute', $this->lang->stage->typeList, $attribute, "class='form-control chosen'")); } return print(zget($this->lang->stage->typeList, $stageAttribute)); } /** * AJAX: Get stage's attribute. * * @param int $stageID * @access public * @return int */ public function ajaxGetStageAttr($stageID) { $stage = $this->dao->select('attribute')->from(TABLE_EXECUTION)->where('id')->eq($stageID)->fetch('attribute'); return print($stage); } }