* @package report * @version $Id: control.php 4622 2013-03-28 01:09:02Z chencongzhi520@gmail.com $ * @link http://www.zentao.net */ class report extends control { /** * The index of report, goto project deviation. * * @access public * @return void */ public function index() { $this->locate(inlink('productSummary')); } /** * Project deviation report. * * @access public * @return void */ public function projectDeviation($begin = 0, $end = 0) { $begin = $begin ? date('Y-m-d', strtotime($begin)) : ''; $end = $end ? date('Y-m-d', strtotime($end)) : ''; $this->view->title = $this->lang->report->projectDeviation; $this->view->position[] = $this->lang->report->projectDeviation; $this->view->projects = $this->report->getProjects($begin, $end); $this->view->begin = $begin; $this->view->end = $end; $this->view->submenu = 'project'; $this->display(); } /** * Product information report. * * @access public * @return void */ public function productSummary($conditions = '') { $this->app->loadLang('product'); $this->app->loadLang('productplan'); $this->app->loadLang('story'); $this->view->title = $this->lang->report->productSummary; $this->view->position[] = $this->lang->report->productSummary; $this->view->products = $this->report->getProducts($conditions); $this->view->users = $this->loadModel('user')->getPairs('noletter|noclosed'); $this->view->submenu = 'product'; $this->view->conditions = $conditions; $this->display(); } /** * Bug create report. * * @param int $begin * @param int $end * @access public * @return void */ public function bugCreate($begin = 0, $end = 0, $product = 0, $project = 0) { $this->app->loadLang('bug'); $begin = $begin == 0 ? date('Y-m-d', strtotime('last month', strtotime(date('Y-m',time()) . '-01 00:00:01'))) : date('Y-m-d', strtotime($begin)); $end = $end == 0 ? date('Y-m-d', strtotime('now')) : $end = date('Y-m-d', strtotime($end)); $this->view->title = $this->lang->report->bugCreate; $this->view->position[] = $this->lang->report->bugCreate; $this->view->begin = $begin; $this->view->end = $end; $this->view->bugs = $this->report->getBugs($begin, $end, $product, $project); $this->view->users = $this->loadModel('user')->getPairs('noletter|noclosed|nodeleted'); $this->view->projects = array('' => '') + $this->loadModel('project')->getPairs(); $this->view->products = array('' => '') + $this->loadModel('product')->getPairs(); $this->view->project = $project; $this->view->product = $product; $this->view->submenu = 'test'; $this->display(); } /** * Bug assign report. * * @access public * @return void */ public function bugAssign() { $this->view->title = $this->lang->report->bugAssign; $this->view->position[] = $this->lang->report->bugAssign; $this->view->submenu = 'test'; $this->view->assigns = $this->report->getBugAssign(); $this->view->users = $this->loadModel('user')->getPairs('noletter|noclosed|nodeleted'); $this->display(); } /** * Workload report. * * @access public * @return void */ public function workload($begin = '', $end = '', $workday = 7, $dept = 0) { if($_POST) { $data = fixer::input('post')->get(); $begin = $data->begin; $end = $data->end; $dept = $data->dept; $workday = $data->workday; } $begin = $begin ? date('Y-m-d', strtotime($begin)) : date('Y-m-d', strtotime('now')); $end = $end ? date('Y-m-d', strtotime($end)) : date('Y-m-d', strtotime('+1 week')); $days = helper::diffDate($end, $begin); $days = $days - ($days / 7 * 2); $this->view->title = $this->lang->report->workload; $this->view->position[] = $this->lang->report->workload; $this->view->workload = $this->report->getWorkload($begin, $end, $dept); $this->view->users = $this->loadModel('user')->getPairs('noletter|noclosed|nodeleted'); $this->view->depts = $this->loadModel('dept')->getOptionMenu(); $this->view->begin = $begin; $this->view->end = $end; $this->view->workday = $workday; $this->view->dept = $dept; $this->view->allHour = $days * $workday; $this->view->submenu = 'staff'; $this->display(); } /** * Send daily reminder mail. * * @access public * @return void */ public function remind() { if($this->config->report->dailyreminder->bug) $bugs = $this->report->getUserBugs(); if($this->config->report->dailyreminder->task) $tasks = $this->report->getUserTasks(); if($this->config->report->dailyreminder->todo) $todos = $this->report->getUserTodos(); $reminder = array(); $users = array_unique(array_merge(array_keys($bugs), array_keys($tasks), array_keys($todos))); if(!empty($users)) foreach($users as $user) $reminder[$user] = new stdclass(); if(!empty($bugs)) foreach($bugs as $user => $bug) $reminder[$user]->bugs = $bug; if(!empty($tasks)) foreach($tasks as $user => $task) $reminder[$user]->tasks = $task; if(!empty($todos)) foreach($todos as $user => $todo) $reminder[$user]->todos = $todo; $this->loadModel('mail'); /* Check mail turnon.*/ if(!$this->config->mail->turnon) { echo "You should turn on the Email feature first.\n"; return false; } foreach($reminder as $user => $mail) { /* Reset $this->output. */ $this->clear(); /* Get email content and title.*/ $this->view->mail = $mail; $mailContent = $this->parse('report', 'dailyreminder'); $mailTitle = $this->lang->report->mailtitle->begin; $mailTitle .= isset($mail->bugs) ? sprintf($this->lang->report->mailtitle->bug, count($mail->bugs)) : ''; $mailTitle .= isset($mail->tasks) ? sprintf($this->lang->report->mailtitle->task, count($mail->tasks)) : ''; $mailTitle .= isset($mail->todos) ? sprintf($this->lang->report->mailtitle->todo, count($mail->todos)) : ''; $mailTitle = rtrim($mailTitle, ','); /* Send email.*/ echo date('Y-m-d H:i:s') . " sending to $user, "; $this->mail->send($user, $mailTitle, $mailContent, '', true); if($this->mail->isError()) { echo "fail: \n" ; a($this->mail->getError()); } echo "ok\n"; } } }