102 lines
2.6 KiB
PHP
102 lines
2.6 KiB
PHP
<?php
|
|
/**
|
|
* The control file of dept module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2012 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
|
|
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package dept
|
|
* @version $Id$
|
|
* @link http://www.zentao.net
|
|
*/
|
|
class dept extends control
|
|
{
|
|
const NEW_CHILD_COUNT = 10;
|
|
|
|
/**
|
|
* Construct function, set menu.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->loadModel('company')->setMenu();
|
|
}
|
|
|
|
/**
|
|
* Browse a department.
|
|
*
|
|
* @param int $deptID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function browse($deptID = 0)
|
|
{
|
|
$header['title'] = $this->lang->dept->manage . $this->lang->colon . $this->app->company->name;
|
|
$position[] = $this->lang->dept->manage;
|
|
|
|
$parentDepts = $this->dept->getParents($deptID);
|
|
$this->view->header = $header;
|
|
$this->view->position = $position;
|
|
$this->view->deptID = $deptID;
|
|
$this->view->depts = $this->dept->getTreeMenu($rootDeptID = 0, array('deptmodel', 'createManageLink'));
|
|
$this->view->parentDepts = $parentDepts;
|
|
$this->view->sons = $this->dept->getSons($deptID);
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Update the departments order.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function updateOrder()
|
|
{
|
|
if(!empty($_POST))
|
|
{
|
|
$this->dept->updateOrder($_POST['orders']);
|
|
die(js::reload('parent'));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Manage childs.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function manageChild()
|
|
{
|
|
if(!empty($_POST))
|
|
{
|
|
$this->dept->manageChild($_POST['parentDeptID'], $_POST['depts']);
|
|
die(js::reload('parent'));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Delete a department.
|
|
*
|
|
* @param int $deptID
|
|
* @param string $confirm yes|no
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function delete($deptID, $confirm = 'no')
|
|
{
|
|
if($confirm == 'no')
|
|
{
|
|
echo js::confirm($this->lang->dept->confirmDelete, $this->createLink('dept', 'delete', "deptID=$deptID&confirm=yes"));
|
|
exit;
|
|
}
|
|
else
|
|
{
|
|
$this->dept->delete($deptID);
|
|
die(js::reload('parent'));
|
|
}
|
|
}
|
|
}
|