* @package task * @version $Id: control.php 5106 2022-11-18 17:15:54Z $ * @link https://www.zentao.net */ class screen extends control { /** * Browse screen list. * * @param int $dimensionID * @access public * @return void */ public function browse($dimensionID = 0) { $this->app->loadLang('admin'); $this->loadModel('setting'); $dimensionID = $this->loadModel('dimension')->setSwitcherMenu($dimensionID); /* BI guide. */ $lang = (strpos($this->app->getClientLang(), 'zh') !== false) ? 'zh' : 'en'; $version = ($this->config->edition == 'biz' or $this->config->edition == 'max') ? 'biz' : 'pms'; $imageURL = "static/images/bi_guide_{$version}_{$lang}.png"; $currentUser = $this->app->user->account; $moduleKey = $version . 'firstGuide'; $firstGuide = $this->setting->getItem("owner={$currentUser}&module=bi&key={$moduleKey}"); if(empty($firstGuide)) $this->setting->setItem("{$currentUser}.bi.{$moduleKey}", 1); $this->view->firstGuide = !empty($firstGuide); $this->view->imageURL = $imageURL; $this->view->version = $version; $this->view->title = $this->lang->screen->common; $this->view->screens = $this->screen->getList($dimensionID); $this->view->dimension = $dimensionID; $this->display(); } /** * View screen. * * @param int $screenID * @param int $year * @param int $dept * @param string $account * @access public * @return void */ public function view($screenID, $year = 0, $dept = 0, $account = '') { if(empty($year)) $year = date('Y'); if($screenID == 3) { echo $this->fetch('report', 'annualData'); return; } $screen = $this->screen->getByID($screenID, $year, $dept, $account); $this->view->title = $screen->name; $this->view->screen = $screen; if($screenID == 5) { $this->loadModel('execution'); $this->view->executions = $this->screen->getBurnData(); $this->view->date = date('Y-m-d H:i:s'); $this->display('screen', 'burn'); } else { $this->view->year = $year; $this->view->dept = $dept; $this->view->account = $account; $this->display(); } } }