| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472 |
- <?php
- /**
- * The model file of dept 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 dept
- * @link https://www.zentao.net
- */
- class deptModel extends model
- {
- /**
- * 根据部门ID获取部门信息。
- * Get a department by id.
- *
- * @param int $deptID
- * @access public
- * @return object|false
- */
- public function getByID($deptID)
- {
- return $this->dao->findById($deptID)->from(TABLE_DEPT)->fetch();
- }
- /**
- * 获取所有部门名称。
- * Get all department names.
- *
- * @access public
- * @return array
- */
- public function getDeptPairs()
- {
- return $this->dao->select('id,name')->from(TABLE_DEPT)->fetchPairs();
- }
- /**
- * 获取所有部门列表。
- * Get all department list.
- *
- * @access public
- * @return array
- */
- public function getList()
- {
- return $this->dao->select('*')->from(TABLE_DEPT)->fetchAll();
- }
- /**
- * 获取下一级部门的部门信息。
- * Get sons of a department.
- *
- * @param int $deptID
- * @access public
- * @return array
- */
- public function getSons($deptID)
- {
- return $this->dao->select('*')->from(TABLE_DEPT)->where('parent')->eq($deptID)->orderBy('`order`')->fetchAll();
- }
- /**
- * 获取当前部门以及父级部门的部门信息。
- * Get parents.
- *
- * @param int $deptID
- * @access public
- * @return array
- */
- public function getParents($deptID)
- {
- if(!$deptID) return array();
- $path = $this->dao->select('path')->from(TABLE_DEPT)->where('id')->eq($deptID)->fetch('path');
- $path = substr($path, 1, -1);
- if(empty($path)) return array();
- return $this->dao->select('*')->from(TABLE_DEPT)->where('id')->in($path)->orderBy('grade')->fetchAll();
- }
- /**
- * 获取所有子级部门的部门信息。
- * Get child departments info.
- *
- * @param int $rootDeptID
- * @access public
- * @return array
- */
- public function getChildDepts($rootDeptID)
- {
- $rootDept = $this->fetchByID($rootDeptID);
- $rootPath = !empty($rootDept) ? $rootDept->path : '';
- return $this->dao->select('*')->from(TABLE_DEPT)
- ->beginIF($rootPath)->where('path')->like("{$rootPath}%")->fi()
- ->orderBy('grade desc, `order`')
- ->fetchAll('id');
- }
- /**
- * 获取所有自己部门的ID。
- * Get all childs.
- *
- * @param int $deptID
- * @access public
- * @return array
- */
- public function getAllChildID($deptID)
- {
- $dept = $this->fetchByID($deptID);
- if(!$dept) return array();
- $childs = $this->dao->select('id')->from(TABLE_DEPT)->where('path')->like($dept->path . '%')->fetchPairs();
- return array_keys($childs);
- }
- /**
- * 获取带层级结构的部门列表。
- * Get option menu of departments.
- *
- * @param int $rootDeptID
- * @access public
- * @return array
- */
- public function getOptionMenu($rootDeptID = 0)
- {
- $deptMenu = array();
- $depts = $this->getChildDepts($rootDeptID);
- foreach($depts as $dept)
- {
- $parentDepts = explode(',', $dept->path);
- $deptName = '/';
- foreach($parentDepts as $parentDeptID)
- {
- if(empty($parentDeptID)) continue;
- $deptName .= $depts[$parentDeptID]->name . '/';
- }
- $deptName = rtrim($deptName, '/');
- $deptName .= "|$dept->id\n";
- if(!isset($deptMenu[$dept->parent])) $deptMenu[$dept->parent] = '';
- $deptMenu[$dept->parent] .= $deptName;
- if(!empty($deptMenu[$dept->id])) $deptMenu[$dept->parent] .= $deptMenu[$dept->id];
- }
- krsort($deptMenu);
- $topMenu = array_pop($deptMenu);
- $topMenu = explode("\n", trim((string)$topMenu));
- $lastMenu[] = '/';
- foreach($topMenu as $menu)
- {
- if(!strpos($menu, '|')) continue;
- list($label, $deptID) = explode('|', $menu);
- $lastMenu[$deptID] = $label;
- }
- return $lastMenu;
- }
- /**
- * 获取部门树形结构所需的数据。
- * Get the treemenu of departments.
- *
- * @param int $rootDeptID
- * @param array $userFunc
- * @param int $param
- * @access public
- * @return array
- */
- public function getTreeMenu($rootDeptID = 0, $userFunc = array(), $param = 0)
- {
- $deptMenu = array();
- $depts = $this->getChildDepts($rootDeptID);
- foreach($depts as $dept)
- {
- $data = new stdclass();
- $data->id = $dept->id;
- $data->parent = $dept->parent;
- $data->name = $dept->name;
- $data->url = call_user_func($userFunc, $dept, $param);
- $deptMenu[] = $data;
- }
- return $deptMenu;
- }
- /**
- * 更新部门信息。
- * Update a dept.
- *
- * @param object $dept
- * @access public
- * @return bool
- */
- public function update($dept)
- {
- $oldDept = $this->fetchByID($dept->id);
- /* 更新当前部门的信息。 */
- $this->dao->update(TABLE_DEPT)->data($dept)->autoCheck()->batchCheck($this->config->dept->edit->requiredFields, 'notempty')->where('id')->eq($dept->id)->exec();
- if(dao::isError()) return false;
- /* 变更当前部门的子部门负责人。 */
- $childs = $this->getAllChildID($dept->id);
- if(!empty($dept->manager)) $this->dao->update(TABLE_DEPT)->set('manager')->eq($dept->manager)->where('id')->in($childs)->andWhere('manager', true)->eq('')->orWhere('manager')->eq($oldDept->manager)->markRight(1)->exec();
- /* 整理部门的path和grade。 */
- $this->fixDeptPath();
- return !dao::isError();
- }
- /**
- * 生成用户列表页面部门的跳转链接。
- * Create the member link.
- *
- * @param object $dept
- * @access public
- * @return string
- */
- public function createMemberLink($dept)
- {
- return helper::createLink('company', 'browse', "browseType=inside&dept={$dept->id}");
- }
- /**
- * 生成权限成员维护页面部门的跳转链接。
- * Create the group manage members link.
- *
- * @param object $dept
- * @param int $groupID
- * @access public
- * @return string
- */
- public function createGroupManageMemberLink($dept, $groupID)
- {
- return helper::createLink('group', 'managemember', "groupID=$groupID&deptID={$dept->id}");
- }
- /**
- * 生成维护管理对象页面部门的跳转链接。
- * Create the group manage program admin link.
- *
- * @param object $dept
- * @param int $groupID
- * @access public
- * @return string
- */
- public function createManageProjectAdminLink($dept, $groupID)
- {
- return helper::createLink('group', 'manageProjectAdmin', "groupID=$groupID&deptID={$dept->id}");
- }
- /**
- * 部门排序。
- * Update order.
- *
- * @param array $orders
- * @access public
- * @return bool
- */
- public function updateOrder($orders)
- {
- $order = 1;
- foreach($orders as $deptID)
- {
- $this->dao->update(TABLE_DEPT)->set('`order`')->eq($order)->where('id')->eq($deptID)->exec();
- $order ++;
- }
- return !dao::isError();
- }
- /**
- * 新增或者编辑部门。
- * Manage childs.
- *
- * @param int $parentDeptID
- * @param array $childs
- * @param int $maxOrder
- * @access public
- * @return array
- */
- public function manageChild($parentDeptID, $childs, $maxOrder = 0)
- {
- $parentDept = $this->fetchByID($parentDeptID);
- $grade = $parentDept ? ($parentDept->grade + 1) : 1;
- $parentPath = $parentDept ? $parentDept->path : ',';
- $index = 1;
- $deptIDList = array();
- foreach($childs as $deptID => $deptName)
- {
- if(empty($deptName)) continue;
- if(is_numeric($deptID))
- {
- /* 处理新插入的部门数据。 */
- $dept = new stdclass();
- $dept->name = strip_tags($deptName);
- $dept->parent = $parentDeptID;
- $dept->grade = $grade;
- $dept->order = $maxOrder + $index * 10;
- $this->dao->insert(TABLE_DEPT)->data($dept)->exec();
- $deptID = $this->dao->lastInsertID();
- $deptIDList[] = $deptID;
- $index ++;
- $childPath = $parentPath . "$deptID,";
- $this->dao->update(TABLE_DEPT)->set('path')->eq($childPath)->where('id')->eq($deptID)->exec();
- }
- else
- {
- /* 处理可能发生的变更名称。 */
- $deptID = str_replace('id', '', $deptID);
- $this->dao->update(TABLE_DEPT)->set('name')->eq(strip_tags($deptName))->where('id')->eq($deptID)->exec();
- }
- }
- /* 返回新增的部门ID。 */
- return $deptIDList;
- }
- /**
- * 获取部门下对应的用户列表。
- * Get users of a deparment.
- *
- * @param string $browseType inside|outside|all
- * @param array $depts
- * @param string $orderBy
- * @param object $pager
- * @access public
- * @return array
- */
- public function getUsers($browseType = 'inside', $depts = array(), $orderBy = 'id', $pager = null)
- {
- return $this->dao->select('*')->from(TABLE_USER)
- ->where('deleted')->eq(0)
- ->beginIF($browseType == 'inside' || $browseType == 'outside')->andWhere('type')->eq($browseType)->fi()
- ->beginIF($depts)->andWhere('dept')->in($depts)->fi()
- ->beginIF($this->config->vision)->andWhere("CONCAT(',', visions, ',')")->like("%,{$this->config->vision},%")->fi()
- ->orderBy($orderBy)
- ->page($pager)
- ->fetchAll();
- }
- /**
- * 获取指定部门下的用户列表。
- * Get user pairs of a department.
- *
- * @param int $deptID
- * @param string $key id|account
- * @param string $type inside|outside
- * @param string $params all
- * @access public
- * @return array
- */
- public function getDeptUserPairs($deptID = 0, $key = 'account', $type = 'inside', $params = '')
- {
- $childDepts = $this->getAllChildID($deptID);
- $keyField = $key == 'id' ? 'id' : 'account';
- $type = $type == 'outside' ? 'outside' : 'inside';
- return $this->dao->select("$keyField, realname")->from(TABLE_USER)
- ->where('1=1')
- ->beginIF(strpos($params, 'queryAll') === false && empty($this->config->user->showDeleted))->andWhere('deleted')->eq(0)->fi()
- ->beginIF(strpos($params, 'all') === false)->andWhere('type')->eq($type)->fi()
- ->beginIF($childDepts)->andWhere('dept')->in($childDepts)->fi()
- ->beginIF($this->config->vision)->andWhere("CONCAT(',', visions, ',')")->like("%,{$this->config->vision},%")->fi()
- ->orderBy('account')
- ->fetchPairs();
- }
- /**
- * 整理部门的path和grade。
- * Fix dept path.
- *
- * @access public
- * @return void
- */
- public function fixDeptPath()
- {
- /* Get all depts grouped by parent. */
- $depts = array();
- $groupDepts = $this->dao->select('id, parent')->from(TABLE_DEPT)->fetchGroup('parent', 'id');
- /* Cycle the groupDepts until it has no item any more. */
- while(count($groupDepts) > 0)
- {
- $oldCounts = count($groupDepts); // Record the counts before processing.
- foreach($groupDepts as $parentDeptID => $childDepts)
- {
- /* If the parentDept doesn't exsit in the depts, skip it. If exists, compute it's child depts. */
- if(!isset($depts[$parentDeptID]) and $parentDeptID != 0) continue;
- if($parentDeptID == 0)
- {
- $parentDept = new stdclass();
- $parentDept->grade = 0;
- $parentDept->path = ',';
- }
- else
- {
- $parentDept = $depts[$parentDeptID];
- }
- /* Compute it's child depts. */
- foreach($childDepts as $childDeptID => $childDept)
- {
- $childDept->grade = $parentDept->grade + 1;
- $childDept->path = $parentDept->path . $childDept->id . ',';
- $depts[$childDeptID] = $childDept; // Save child dept to depts, thus the child of child can compute it's grade and path.
- }
- unset($groupDepts[$parentDeptID]); // Remove it from the groupDepts.
- }
- if(count($groupDepts) == $oldCounts) break; // If after processing, no dept processed, break the cycle.
- }
- /* Save depts to database. */
- foreach($depts as $dept) $this->dao->update(TABLE_DEPT)->data($dept)->where('id')->eq($dept->id)->exec();
- return !dao::isError();
- }
- /**
- * 获取带有层级关系的部门结构。
- * Get data structure.
- *
- * @access public
- * @return array
- */
- public function getDataStructure()
- {
- $tree = array();
- $users = $this->loadModel('user')->getPairs('noletter|noclosed|nodeleted|all');
- $treeGroups = $this->dao->select('*')->from(TABLE_DEPT)->orderBy('grade_desc,`order`')->fetchGroup('parent', 'id');
- foreach($treeGroups as $parent => $groups)
- {
- foreach($groups as $deptID => $node)
- {
- $node->managerName = zget($users, $node->manager);
- $node->url = helper::createLink('dept', 'browse', "deptID={$deptID}");
- $node->key = $node->name;
- $node->text = $node->name;
- if(isset($tree[$deptID]))
- {
- $node->items = $tree[$deptID];
- unset($tree[$deptID]);
- }
- $tree[$node->parent][] = $node;
- }
- }
- krsort($tree);
- return $tree ? array_pop($tree) : array();
- }
- /**
- * 删除部门。
- * Delete dept.
- *
- * @param int $deptID
- * @access public
- * @return bool
- */
- public function deleteDept($deptID)
- {
- $this->dao->delete()->from(TABLE_DEPT)->where('id')->eq($deptID)->exec();
- return !dao::isError();
- }
- }
|