Department.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. <?php
  2. namespace catchAdmin\permissions\controller;
  3. use catcher\base\CatchController;
  4. use catchAdmin\permissions\model\Department as DepartmentModel;
  5. use catcher\base\CatchRequest;
  6. use catcher\CatchResponse;
  7. use catcher\exceptions\FailedException;
  8. use catcher\Tree;
  9. use catchAdmin\system\model\SysDictData;
  10. use think\facade\Db;
  11. class Department extends CatchController
  12. {
  13. protected $department;
  14. public function __construct(DepartmentModel $department)
  15. {
  16. $this->department = $department;
  17. }
  18. /**
  19. * 列表
  20. *
  21. * @time 2020年01月09日
  22. * @param CatchRequest $request
  23. * @return \think\response\Json
  24. * @throws \think\db\exception\DbException
  25. */
  26. public function index(): \think\response\Json
  27. {
  28. return CatchResponse::success($this->department->getList());
  29. }
  30. /**
  31. * 学校列表
  32. *
  33. * @time 2020年01月09日
  34. * @param CatchRequest $request
  35. * @return \think\response\Json
  36. * @throws \think\db\exception\DbException
  37. */
  38. public function getSchoolDeparts(): \think\response\Json
  39. {
  40. return CatchResponse::success($this->department->getSchoolList());
  41. }
  42. /**
  43. * 运营商列表
  44. *
  45. * @time 2020年01月09日
  46. * @param CatchRequest $request
  47. * @return \think\response\Json
  48. * @throws \think\db\exception\DbException
  49. */
  50. public function getYysDeparts(): \think\response\Json
  51. {
  52. return CatchResponse::success($this->department->getYysDepartList());
  53. }
  54. /**
  55. * 班级列表
  56. *
  57. * @time 2020年01月09日
  58. * @param CatchRequest $request
  59. * @return \think\response\Json
  60. * @throws \think\db\exception\DbException
  61. */
  62. public function getClassDeparts($pid): \think\response\Json
  63. {
  64. return CatchResponse::success($this->department->getClassList($pid));
  65. }
  66. /**
  67. * 带有学校的部门列表
  68. *
  69. * @time 2020年01月09日
  70. * @param CatchRequest $request
  71. * @return \think\response\Json
  72. * @throws \think\db\exception\DbException
  73. */
  74. public function getDepartsHasSchool(): \think\response\Json
  75. {
  76. return CatchResponse::success($this->department->getListHasSchool());
  77. }
  78. /**
  79. * 保存
  80. *
  81. * @time 2020年01月09日
  82. * @param CatchRequest $request
  83. * @return \think\response\Json
  84. */
  85. public function save(CatchRequest $request): \think\response\Json
  86. {
  87. $params=$request->param();
  88. if($params['parent_id']){
  89. $parent_level=Db::table('departments')->where('id',$params['parent_id'])->value('level');
  90. if($parent_level){
  91. $params['level']=$parent_level.'-'.$params['parent_id'];
  92. }else{
  93. $params['level']=$params['parent_id'];
  94. }
  95. }
  96. return CatchResponse::success($this->department->storeBy($params));
  97. }
  98. /**
  99. * 更新
  100. *
  101. * @time 2020年01月09日
  102. * @param $id
  103. * @param CatchRequest $request
  104. * @return \think\response\Json
  105. */
  106. public function update($id, CatchRequest $request): \think\response\Json
  107. {
  108. $params=$request->param();
  109. return CatchResponse::success($this->department->updateBy($id, $params));
  110. }
  111. /**
  112. * 删除
  113. *
  114. * @time 2020年01月09日
  115. * @param $id
  116. * @return \think\response\Json
  117. */
  118. public function delete($id): \think\response\Json
  119. {
  120. if ($this->department->where('parent_id', $id)->find()) {
  121. throw new FailedException('存在子部门,无法删除');
  122. }
  123. if(Db::table('users')->where('department_id',$id)->count()){
  124. throw new FailedException('部门存在用户,无法删除');
  125. }
  126. return CatchResponse::success($this->department->deleteBy($id,true));
  127. }
  128. /**
  129. * 获取部门类型
  130. *
  131. * @time 2020年01月09日
  132. * @param $id
  133. * @return \think\response\Json
  134. */
  135. public function getDepartmentType(CatchRequest $request): \think\response\Json
  136. {
  137. $params=$request->param();
  138. $options = (new SysDictData)->getTypesByCodeWithRemark('DepartmentType',$params['departType']);
  139. return CatchResponse::success($options);
  140. }
  141. /**
  142. * 获取部门区域
  143. *
  144. * @time 2020年01月09日
  145. * @param CatchRequest $request
  146. * @return
  147. */
  148. public function getDepartmentAreaId(CatchRequest $request)
  149. {
  150. $params=$request->param();
  151. $departInfo=Db::table('departments')->where('id',$params['id'])->find();
  152. $area_id='';
  153. if($departInfo['district_id']){
  154. $area_id=$departInfo['district_id'];
  155. }elseif($departInfo['city_id']){
  156. $area_id=$departInfo['city_id'];
  157. }else{
  158. $area_id=$departInfo['province_id'];
  159. }
  160. return CatchResponse::success($area_id);
  161. }
  162. /**
  163. * 仅获取学校数据
  164. */
  165. public function onlySchoolData(CatchRequest $request)
  166. {
  167. return CatchResponse::success($this->department->getOnlySchoolData());
  168. }
  169. /**
  170. * 仅获取学校下拉
  171. */
  172. public function getOnlySchoolOption(CatchRequest $request)
  173. {
  174. return CatchResponse::success($this->department->getOnlySchoolOption());
  175. }
  176. /**
  177. * 根据子级下拉
  178. * @time 2021年05月18日 13:50
  179. * @param $id
  180. */
  181. public function getChildrenOption($id)
  182. {
  183. $options = $this->department->where('parent_id',$id)->field('id as value,department_name as text')->select();
  184. return CatchResponse::success($options);
  185. }
  186. }