| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411 |
- <?php
- /**
- * The control file of programplan module of ZenTaoPMS.
- *
- * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
- * @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
- * @author Chunsheng Wang <chunsheng@cnezsoft.com>
- * @package programplan
- * @link https://www.zentao.net
- */
- class programplan extends control
- {
- /**
- * Common action.
- *
- * @param int $projectID
- * @param int $productID
- * @access public
- * @return int
- */
- public function commonAction($projectID, $productID = 0)
- {
- $this->loadModel('product');
- $this->loadModel('project');
- $products = $this->product->getProductPairsByProject($projectID);
- $productID = $this->product->checkAccess($productID, $products);
- $project = $this->project->getByID($projectID);
- $this->session->set('hasProduct', $project->hasProduct);
- $this->project->setMenu($projectID);
- return $productID;
- }
- /**
- * 渲染阶段数据页面。
- * Browse program plans.
- *
- * @param int $projectID
- * @param int $productID
- * @param string $type
- * @param string $orderBy
- * @param int $baselineID
- * @param string $browseType
- * @param int $queryID
- * @param string $from
- * @param int $blockID
- * @access public
- * @return void
- */
- public function browse($projectID = 0, $productID = 0, $type = 'gantt', $orderBy = 'id_asc', $baselineID = 0, $browseType = '', $queryID = 0, $from = 'project', $blockID = 0)
- {
- if($type == 'lists') return $this->locate($this->createLink('project', 'execution', "status=undone&projectID={$projectID}"));
- if($from == 'doc')
- {
- $this->loadModel('doc');
- $projects = $this->loadModel('project')->getPairsByModel(array('ipd', 'waterfall', 'waterfallplus'));
- if(empty($projects)) return $this->send(array('result' => 'fail', 'message' => $this->config->edition == 'ipd' ? $this->lang->programplan->error->noProject4IPD : $this->lang->programplan->error->noProject));
- if(!$projectID) $projectID = key($projects);
- $this->view->projects = $projects;
- }
- $this->app->loadLang('stage');
- $this->session->set('projectPlanList', $this->app->getURI(true), 'project');
- $this->commonAction($projectID, $productID);
- if(!defined('RUN_MODE') || RUN_MODE != 'api') $projectID = $this->project->checkAccess($projectID, $this->project->getPairsByProgram());
- /* Get the product under the project and adjust the three-level navigation action button. */
- $products = $this->loadModel('product')->getProducts($projectID);
- if($this->session->hasProduct) $this->lang->modulePageNav = $this->product->select($products, $productID, 'programplan', 'browse', $type, 0, false);
- /* Generate stage list page data. */
- $browseType = strtolower($browseType);
- $plans = $this->programplanZen->buildStages($projectID, $productID, $baselineID, $type, $orderBy, $browseType, $queryID);
- $this->view->from = $from;
- $this->view->blockID = $blockID;
- /* Build gantt browse view. */
- $this->programplanZen->buildBrowseView($projectID, $productID, $plans, $type, $orderBy, $baselineID, $browseType, $queryID);
- }
- /**
- * 创建一个项目阶段。
- * Create a project plan/phase.
- *
- * @param int $projectID
- * @param int $productID
- * @param int $planID
- * @param string $executionType
- * @param string $from
- * @param int $syncData
- * @access public
- * @return void
- */
- public function create($projectID = 0, $productID = 0, $planID = 0, $executionType = 'stage', $from = '', $syncData = 0)
- {
- $this->loadModel('review');
- $this->productID = $this->commonAction($projectID, $productID);
- if($_POST)
- {
- $plans = $this->programplanZen->buildPlansForCreate($projectID, $planID);
- if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError()));
- $this->programplan->create($plans, $projectID, $this->productID, $planID, $syncData);
- if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError()));
- $locate = $this->session->projectPlanList ? $this->session->projectPlanList : $this->createLink('project', 'execution', "status=all&projectID={$projectID}&orderBy=order_asc&productID={$productID}");
- if($from == 'projectCreate') $locate = $this->createLink('project', 'create', "model=&programID=0©ProjectID=0&extra=showTips=1,project=$projectID");
- $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'load' => $locate));
- }
- $project = $this->project->getById($projectID);
- $programPlan = $this->project->getById($planID);
- $productList = $this->session->hasProduct ? $this->product->getProductPairsByProject($projectID) : array();
- $plans = $this->programplan->getStage($projectID, $this->productID, 'all', 'grade_asc,order_asc');
- if($planID)
- {
- foreach($plans as $planID => $plan)
- {
- if($plan->path == $programPlan->path || strpos($plan->path, $programPlan->path) !== 0) unset($plans[$planID]);
- }
- }
- $plans = $this->programplanZen->sortPlans($plans);
- /* Set programplan typeList. */
- if($executionType != 'stage') unset($this->lang->execution->typeList[''], $this->lang->execution->typeList['stage']);
- /* Unset percent for create IPD project.*/
- if($project->model == 'ipd') $this->config->programplan->list->customCreateFields = str_replace(',percent', '', $this->config->programplan->list->customCreateFields);
- $viewData = new stdclass();
- $viewData->productID = $productID;
- $viewData->planID = $planID;
- $viewData->executionType = $executionType;
- $viewData->programPlan = $programPlan;
- $viewData->productList = $productList;
- $viewData->project = $project;
- $viewData->plans = $plans;
- $viewData->syncData = $syncData;
- $this->programplanZen->buildCreateView($viewData);
- $this->display();
- }
- /**
- * 编辑阶段内容。
- * Edit a project plan.
- *
- * @param int $planID
- * @param int $projectID
- * @access public
- * @return void
- */
- public function edit($planID = 0, $projectID = 0)
- {
- if($_POST)
- {
- $this->loadModel('execution');
- if(!empty($this->config->setCode) && strpos(",{$this->config->execution->edit->requiredFields},", ',code,') !== false) $this->config->programplan->form->edit['code']['required'] = true;
- $plan = form::data()->get();
- /* 设置计划和真实起始日期间隔时间。 */
- /* Set planDuration and realDuration. */
- if(in_array($this->config->edition, array('max', 'ipd')))
- {
- $plan->planDuration = $this->programplan->getDuration($plan->begin, $plan->end);
- $plan->realDuration = $this->programplan->getDuration($plan->realBegan, $plan->realEnd);
- }
- if($plan->parent)
- {
- $parentStage = $this->programplan->getByID($plan->parent);
- $plan->acl = $parentStage->acl;
- if($parentStage->attribute != 'mix') $plan->attribute = $parentStage->attribute;
- }
- if(empty($plan->realBegan)) $plan->realBegan = null;
- if(empty($plan->realEnd)) $plan->realEnd = null;
- if(empty($plan->percent)) $plan->percent = 0;
- $plan = $this->programplanZen->prepareEditPlan($planID, $projectID, $plan, isset($parentStage) ? $parentStage : null);
- if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError()));
- $this->programplan->update($planID, $projectID, $plan);
- if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError()));
- $newPlan = $this->programplan->fetchByID($planID);
- if($plan->parent != $newPlan->parent)
- {
- $this->programplan->computeProgress($planID, 'edit');
- $this->programplan->computeProgress($plan->parent, 'edit', true);
- }
- if($this->app->rawModule == 'marketresearch') return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => $this->session->marketstageList));
- return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'callback' => 'loadCurrentPage', 'closeModal' => true));
- }
- $plan = $this->programplan->getByID($planID);
- $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)
- {
- $settings = form::data($this->config->programplan->form->ajaxCustom)->get();
- $this->programplan->saveCustomSetting($settings, $owner, $module);
- return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'closeModal' => true, 'load' => true));
- }
- /* 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(!$this->post->id || !$this->post->type) return $this->send(array('result' => 'fail', 'message' => ''));
- $postData = form::data($this->config->programplan->form->updateDateByGantt)->get();
- $this->loadModel('task')->updateEsDateByGantt($postData);
- if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError()));
- return $this->send(array('result' => 'success'));
- }
- /**
- * 处理甘特图删除连线事件。
- * Response gantt delete link.
- *
- * @access public
- * @return void
- */
- public function ajaxResponseGanttDeleteRelationEvent()
- {
- if(!empty($_POST['id'])) $this->loadModel('execution')->deleteRelation((int)$this->post->id);
- return $this->send(array('result' => 'success'));
- }
- /**
- * 处理甘特图移动事件数据。
- * Response gantt move event.
- *
- * @access public
- */
- public function ajaxResponseGanttMoveEvent()
- {
- if(!$this->post->id) return $this->send(array('result' => 'fail', 'message' => ''));
- $idList = explode('-', $this->post->id);
- $taskID = !empty($idList[1]) ? $idList[1] : 0;
- if(empty($taskID)) return $this->send(array('result' => 'fail', 'message' => ''));
- $postData = form::data($this->config->programplan->form->updateTaskOrderByGantt)->get();
- $this->loadModel('task')->updateOrderByGantt($postData);
- if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError()));
- $this->loadModel('action')->create('task', (int)$taskID, 'ganttMove');
- return $this->send(array('result' => 'success'));
- }
- /**
- * ajax请求:获取阶段ID的属性。
- * AJAX: Get stageID attributes.
- *
- * @param int $stageID
- * @param string $attribute
- * @param string $projectModel
- * @access public
- * @return int
- */
- public function ajaxGetAttribute($stageID, $attribute, $projectModel = '')
- {
- $this->app->loadLang('stage');
- if($projectModel == 'ipd') $this->lang->stage->typeList = $this->lang->stage->ipdTypeList;
- $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请求:获取阶段ID的属性。
- * AJAX: Get stageID attribute.
- *
- * @param int $stageID
- * @access public
- * @return int
- */
- public function ajaxGetStageAttr($stageID)
- {
- $stageAttribute = $this->programplan->getStageAttribute($stageID);
- return print($stageAttribute);
- }
- /**
- * 项目下维护任务关系。
- * Show relation of project.
- *
- * @param int $projectID
- * @param int $recTotal
- * @param int $recPerPage
- * @param int $pageID
- * @access public
- * @return void
- */
- public function relation($projectID = 0, $recTotal = 0, $recPerPage = 25, $pageID = 1)
- {
- echo $this->fetch('execution', 'relation', "executionID=$projectID&recTotal=$recTotal&recPerPage=$recPerPage&pageID=$pageID");
- }
- /**
- * 项目下创建任务关系。
- * Create relation of project.
- *
- * @param int $projectID
- * @access public
- * @return void
- */
- public function createRelation($projectID = 0)
- {
- echo $this->fetch('execution', 'createRelation', "executionID=$projectID");
- }
- /**
- * 项目下编辑任务关系。
- * Edit relation of project.
- *
- * @param int $relationID
- * @param int $projectID
- * @access public
- * @return void
- */
- public function editRelation($relationID, $projectID = 0)
- {
- echo $this->fetch('execution', 'editRelation', "relationID=$relationID&projectID=$projectID&executionID=0");
- }
- /**
- * 项目下批量编辑任务关系。
- * Batch edit relations of project.
- *
- * @param int $projectID
- * @access public
- * @return void
- */
- public function batchEditRelation($projectID = 0)
- {
- echo $this->fetch('execution', 'batchEditRelation', "projectID=$projectID&executionID=0");
- }
- /**
- * 项目下删除任务关系。
- * Delete relation of project.
- *
- * @param int $id
- * @param int $projectID
- * @access public
- * @return void
- * @param int $relationID
- */
- public function deleteRelation($relationID, $projectID)
- {
- $this->loadModel('execution')->deleteRelation($relationID);
- return $this->sendSuccess(array('load' => inlink('relation', "project=$projectID")));
- }
- /**
- * 项目下批量删除任务关系。
- * Batch delete relations of project.
- *
- * @param int $executionID
- * @access public
- * @return void
- * @param int $projectID
- */
- public function batchDeleteRelation($projectID)
- {
- $this->loadModel('execution');
- foreach($this->post->relationIdList as $relationID) $this->execution->deleteRelation((int)$relationID);
- return $this->sendSuccess(array('load' => inlink('relation', "projectID=$projectID")));
- }
- }
|