Department.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. <?php
  2. namespace catchAdmin\permissions\model;
  3. use catchAdmin\permissions\model\search\DepartmentSearch;
  4. use catcher\base\CatchModel;
  5. use think\db\exception\DbException;
  6. use catcher\Utils;
  7. use catchAdmin\permissions\model\DataRangScopeTrait;
  8. use catchAdmin\system\model\SysDictData;
  9. use catchAdmin\system\model\SysDictType;
  10. use PhpParser\Node\Stmt\Return_;
  11. use think\facade\Db;
  12. class Department extends CatchModel
  13. {
  14. use DepartmentSearch;
  15. use DataRangScopeTrait;
  16. protected $name = 'departments';
  17. protected $field = [
  18. 'id', //
  19. 'department_name', // 部门名称
  20. 'parent_id', // 父级ID
  21. 'principal', // 负责人
  22. 'mobile', // 联系电话
  23. 'email', // 联系又想
  24. 'creator_id', // 创建人ID
  25. 'status', // 1 正常 2 停用
  26. 'level',//级别
  27. 'sort', // 排序字段
  28. 'created_at', // 创建时间
  29. 'updated_at', // 更新时间
  30. 'deleted_at', // 删除状态,null 未删除 timestamp 已删除
  31. ];
  32. /**
  33. * 列表数据
  34. *
  35. * @time 2020年01月09日
  36. * @return array
  37. * @throws DbException
  38. */
  39. public function getList(): array
  40. {
  41. $where = array();
  42. if (!Utils::isSuperAdmin()) {
  43. $user = request()->user();
  44. // $departmentIds = Department::where('parent_id', $user->department_id)->column('id');
  45. // $departmentIds[] = $user->department_id;
  46. // 如果不是超级管理员,获取子部门及上级直至顶级部门
  47. $parentiIds = $this->getParentDepartmentIds($user->department_id);
  48. $childIds = $this->getChildrenDepartmentIds($user->department_id);
  49. $departmentIds = array_merge($parentiIds, $childIds);
  50. $where[] = ['id', 'in', $departmentIds];
  51. }
  52. return $this->where($where)
  53. ->catchSearch()
  54. ->catchOrder()
  55. ->select()->toTree();
  56. }
  57. /**
  58. * 有学校的列表数据
  59. *
  60. * @time 2020年01月09日
  61. * @return array
  62. * @throws DbException
  63. */
  64. public function getListHasSchool(): array
  65. {
  66. $where = array();
  67. $user = request()->user();
  68. //获取学校类型
  69. $type_id = SysDictType::where('code','DepartmentType')->value('id');
  70. $school_type = SysDictData::where(['remark'=>'school','type_id'=>$type_id])->column('code');
  71. $grade_type = SysDictData::where(['remark'=>'grade','type_id'=>$type_id])->column('code');
  72. $class_type = SysDictData::where(['remark'=>'class','type_id'=>$type_id])->column('code');
  73. if ($user->department_id) {
  74. $parentiIds = $this->getParentDepartmentIds($user->department_id);
  75. $childIds = $this->getChildrenDepartmentIds($user->department_id);
  76. $departmentIds = array_merge($parentiIds, $childIds);
  77. $where[] = ['id', 'in', $departmentIds];
  78. } else {
  79. $parentiIds = $this->whereIn('department_type', $school_type)->column('parent_id');
  80. $parentiIds = array_unique($parentiIds);
  81. $schDepartIds = $this->whereIn('department_type', $school_type)->column('id');
  82. $gradeIds = $this->whereIn('parent_id', $schDepartIds)->whereIn('department_type',$grade_type)->column('id');
  83. $classIds = $this->whereIn('parent_id', $gradeIds)->whereIn('department_type',$class_type)->column('id');
  84. $departmentIds = array_merge($parentiIds, $schDepartIds,$gradeIds,$classIds);
  85. $where[] = ['id', 'in', $departmentIds];
  86. }
  87. $departs = $this->where($where)
  88. ->catchSearch()
  89. ->append(['department_type_text'])
  90. ->catchOrder()
  91. ->select()->toTree();
  92. return $departs;
  93. }
  94. /**
  95. * 只获取学校数据
  96. *
  97. * @time 2020年01月09日
  98. * @return array
  99. * @throws DbException
  100. */
  101. public function getOnlySchoolData()
  102. {
  103. //获取学校类型
  104. $type_id = SysDictType::where('code','DepartmentType')->value('id');
  105. $school_type = SysDictData::where(['remark'=>'school','type_id'=>$type_id])->column('code');
  106. $res = $this->dataRange()
  107. ->catchSearch()
  108. ->where('status', 1)
  109. ->whereIn('department_type', $school_type)
  110. ->append(['department_type_text'])
  111. ->catchOrder()
  112. ->select();
  113. if ($res->isEmpty()) {
  114. // 如果学校角色不通过 creator_id 过滤,通过 department_id 过滤,否则无法获取到上级添加的学校
  115. $school_role_ids = Roles::getSchoolRoleids();
  116. $count = Db::table('user_has_roles')->where('uid', request()->user()->id)
  117. ->whereIn('role_id', $school_role_ids)
  118. ->count();
  119. if ($count) {
  120. $res2 = $this->where('id', request()->user()->department_id)->where('status', 1)->select();
  121. $res = $res->merge($res2);
  122. }
  123. }
  124. return $res;
  125. }
  126. /**
  127. * 只获取学校下拉
  128. *
  129. * @time 2020年01月09日
  130. * @return array
  131. * @throws DbException
  132. */
  133. public function getOnlySchoolOption()
  134. {
  135. //获取学校类型
  136. $type_id = SysDictType::where('code','DepartmentType')->value('id');
  137. $school_type = SysDictData::where(['remark'=>'school','type_id'=>$type_id])->column('code');
  138. $res = $this->dataRange()
  139. ->catchSearch()
  140. ->whereIn('department_type', $school_type)
  141. ->field('id as value,department_name as text')
  142. ->catchOrder()
  143. ->select();
  144. if ($res->isEmpty()) {
  145. // 如果学校角色不通过 creator_id 过滤,通过 department_id 过滤,否则无法获取到上级添加的学校
  146. $school_role_ids = Roles::getSchoolRoleids();
  147. $count = Db::table('user_has_roles')->where('uid', request()->user()->id)
  148. ->whereIn('role_id', $school_role_ids)
  149. ->count();
  150. if ($count) {
  151. $res2 = $this->where('id', request()->user()->department_id)->where('status', 1)->field('id as value,department_name as text')->select();
  152. $res = $res->merge($res2);
  153. }
  154. }
  155. return $res;
  156. }
  157. /**
  158. * 学校列表数据
  159. *
  160. * @time 2020年01月09日
  161. * @return array
  162. * @throws DbException
  163. */
  164. public function getSchoolList(): array
  165. {
  166. $where = array();
  167. $user = request()->user();
  168. //获取学校类型
  169. $type_id = SysDictType::where('code','DepartmentType')->value('id');
  170. $school_type = SysDictData::where(['remark'=>'school','type_id'=>$type_id])->column('code');
  171. if ($user->department_id) {
  172. $parentiIds = $this->getParentDepartmentIds($user->department_id);
  173. } else {
  174. $parentiIds = $this->whereIn('department_type', $school_type)->column('parent_id');
  175. $parentiIds = array_unique($parentiIds);
  176. }
  177. $childIds = $this->whereIn('department_type', $school_type)->column('id');
  178. $departmentIds = array_merge($parentiIds, $childIds);
  179. $where[] = ['id', 'in', $departmentIds];
  180. $departs = $this->where($where)
  181. ->catchSearch()
  182. ->append(['department_type_text'])
  183. ->catchOrder()
  184. ->select()->toTree();
  185. return $departs;
  186. }
  187. /**
  188. * 运营商列表数据
  189. *
  190. * @time 2020年01月09日
  191. * @return array
  192. * @throws DbException
  193. */
  194. public function getYysDepartList(): array
  195. {
  196. $where = array();
  197. $user = request()->user();
  198. //获取学校类型
  199. $type_id = SysDictType::where('code','DepartmentType')->value('id');
  200. $yys_type = SysDictData::where(['remark'=>'yys','type_id'=>$type_id])->column('code');
  201. if ($user->department_id) {
  202. $parentiIds = $this->getParentDepartmentIds($user->department_id);
  203. $childIds= $this->getChildrenDepartmentIdsByType([$user->department_id],$yys_type);
  204. $childIds[]=$user->department_id;//加入自身
  205. $departmentIds = array_merge($parentiIds, $childIds);
  206. } else {
  207. $parentiIds = $this->whereIn('department_type', $yys_type)->column('parent_id');
  208. $parentiIds = array_unique($parentiIds);
  209. $childIds = $this->whereIn('department_type', $yys_type)->column('id');
  210. $departmentIds = array_merge($parentiIds, $childIds);
  211. }
  212. $where[] = ['id', 'in', $departmentIds];
  213. $departs = $this->where($where)
  214. ->catchSearch()
  215. ->append(['department_type_text'])
  216. ->catchOrder()
  217. ->select()->toTree();
  218. return $departs;
  219. }
  220. /**
  221. * 班级列表数据
  222. *
  223. * @time 2020年01月09日
  224. * @return array
  225. * @throws DbException
  226. */
  227. public function getClassList($pid): array
  228. {
  229. //获取年级班级类型
  230. $type_id = SysDictType::where('code','DepartmentType')->value('id');
  231. $grade_type = SysDictData::where(['remark'=>'grade','type_id'=>$type_id])->column('code');
  232. $class_type = SysDictData::where(['remark'=>'class','type_id'=>$type_id])->column('code');
  233. //该学校下所有年级
  234. $gid = $this->where(['parent_id' => $pid])->whereIn('department_type', $grade_type)->column('id');
  235. $cid = $this->where('parent_id', 'in', $gid)->whereIn('department_type', $class_type)->column('id');
  236. $departmentIds = array_merge($gid, $cid);
  237. $where[] = ['id', 'in', $departmentIds];
  238. $departs = $this->where($where)
  239. ->select()->toTree($pid);
  240. // var_dump($this->getLastSql(),$departs);
  241. return $departs;
  242. }
  243. /**
  244. * 获取子部门IDS
  245. *
  246. * @time 2020年11月04日
  247. * @param $id
  248. * @throws DbException
  249. * @throws \think\db\exception\DataNotFoundException
  250. * @throws \think\db\exception\ModelNotFoundException
  251. * @return mixed
  252. */
  253. public static function getChildrenDepartmentIds($id)
  254. {
  255. $departmentIds = Department::field(['id', 'parent_id'])->select()->getAllChildrenIds([$id]);
  256. $departmentIds[] = $id;
  257. return $departmentIds;
  258. }
  259. /**
  260. * 获取运营商子部门IDS
  261. *
  262. * @time 2020年11月04日
  263. * @param $id
  264. * @throws DbException
  265. * @throws \think\db\exception\DataNotFoundException
  266. * @throws \think\db\exception\ModelNotFoundException
  267. * @return mixed
  268. */
  269. public function getChildrenDepartmentIdsByType($ids,$type)
  270. {
  271. $childDepartmentIds = Department::whereIn('parent_id',$ids)->whereIn('department_type',$type)->column('id');
  272. if (!empty($childDepartmentIds)) {
  273. $childIds= $this->getChildrenDepartmentIdsByType($childDepartmentIds,$type);
  274. $childDepartmentIds = array_merge($childDepartmentIds, $childIds);
  275. }
  276. return $childDepartmentIds;
  277. }
  278. /**
  279. * 获取部门名称
  280. */
  281. public static function getDepartmentName($id)
  282. {
  283. $department_name = Department::where('id', $id)->value('department_name');
  284. return $department_name;
  285. }
  286. /**
  287. * 获取上级至顶级部门ids
  288. */
  289. public function getParentDepartmentIds($id)
  290. {
  291. $ids = [];
  292. $pid = Department::where('id', $id)->value('parent_id');
  293. if ($pid > 0) {
  294. $ids[] = $pid;
  295. $parentId = $this->getParentDepartmentIds($pid);
  296. $ids = array_merge($ids, $parentId);
  297. }
  298. return $ids;
  299. }
  300. /**
  301. * 获取上级至顶级部门ids
  302. */
  303. public function getSchoolParentDepartmentIds($id)
  304. {
  305. $ids = [];
  306. $pid = Department::where('id', $id)->value('parent_id');
  307. if ($pid > 0) {
  308. $ids[] = $pid;
  309. $parentId = $this->getSchoolParentDepartmentIds($pid);
  310. if (Department::where('id', $pid)->value('parent_id')) {
  311. }
  312. $ids = array_merge($ids, $parentId);
  313. }
  314. return $ids;
  315. }
  316. }