Notice.php 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <?php
  2. namespace catchAdmin\wechat\controller;
  3. use catcher\base\CatchRequest as Request;
  4. use catcher\CatchResponse;
  5. use catcher\base\CatchController;
  6. use catchAdmin\wechat\model\Notice as noticeModel;
  7. use catchAdmin\permissions\model\Department;
  8. use catchAdmin\system\model\SysDictData;
  9. class Notice extends CatchController
  10. {
  11. protected $noticeModel;
  12. public function __construct(NoticeModel $noticeModel)
  13. {
  14. $this->noticeModel = $noticeModel;
  15. }
  16. /**
  17. * 列表
  18. * @time 2021年05月28日 17:16
  19. * @param Request $request
  20. */
  21. public function index(Request $request): \think\Response
  22. {
  23. return CatchResponse::paginate($this->noticeModel->getList());
  24. }
  25. /**
  26. * 保存信息
  27. * @time 2021年05月28日 17:16
  28. * @param Request $request
  29. */
  30. public function save(Request $request): \think\Response
  31. {
  32. $data = $request->post();
  33. $department_id = end($data['department_id']);
  34. // var_dump($data);
  35. $depart_type = Department::where('id', $department_id)->value('department_type');
  36. $type_remark = (new SysDictData)->getRemarkByCode('DepartmentType', $depart_type);
  37. if ($type_remark != $data['type']) {
  38. return CatchResponse::fail('学校/班级/年级选择与类型不一致');
  39. }
  40. if ($type_remark == 'school') {
  41. if ($data['enable']) {
  42. $data['enable'] = 1;
  43. //不能重复启用
  44. $where = ['school_id'=>$department_id,'type'=>'school','enable'=>1];
  45. $info = $this->noticeModel->where($where)->find();
  46. if (!empty($info)) {
  47. return CatchResponse::fail('该类型公告已有启用');
  48. }
  49. }else{
  50. $data['enable'] = 0;
  51. }
  52. $data['school_id'] = $department_id;
  53. }
  54. if ($type_remark == 'grade') {
  55. if ($data['enable']) {
  56. $data['enable'] = 1;
  57. //不能重复启用
  58. $where = ['grade_id'=>$department_id,'type'=>'grade','enable'=>1];
  59. $info = $this->noticeModel->where($where)->find();
  60. if (!empty($info)) {
  61. return CatchResponse::fail('该类型公告已有启用');
  62. }
  63. }else{
  64. $data['enable'] = 0;
  65. }
  66. $data['grade_id'] = $department_id;
  67. $data['school_id'] = Department::where('id', $department_id)->value('parent_id');
  68. }
  69. if ($type_remark == 'class') {
  70. if ($data['enable']) {
  71. $data['enable'] = 1;
  72. //不能重复启用
  73. $where = ['class_id'=>$department_id,'type'=>'class','enable'=>1];
  74. $info = $this->noticeModel->where($where)->find();
  75. if (!empty($info)) {
  76. return CatchResponse::fail('该类型公告已有启用');
  77. }
  78. }else{
  79. $data['enable'] = 0;
  80. }
  81. $data['class_id'] = $department_id;
  82. $data['grade_id'] = Department::where('id', $department_id)->value('parent_id');
  83. $data['school_id'] = Department::where('id', $data['grade_id'])->value('parent_id');
  84. }
  85. return CatchResponse::success($this->noticeModel->storeBy($data));
  86. }
  87. /**
  88. * 读取
  89. * @time 2021年05月28日 17:16
  90. * @param $id
  91. */
  92. public function read($id): \think\Response
  93. {
  94. return CatchResponse::success($this->noticeModel->findBy($id));
  95. }
  96. /**
  97. * 更新
  98. * @time 2021年05月28日 17:16
  99. * @param Request $request
  100. * @param $id
  101. */
  102. public function update(Request $request, $id): \think\Response
  103. {
  104. $data = $request->post();
  105. $department_id = end($data['department_id']);
  106. // var_dump($data);
  107. $depart_type = Department::where('id', $department_id)->value('department_type');
  108. $type_remark = (new SysDictData)->getRemarkByCode('DepartmentType', $depart_type);
  109. if ($type_remark != $data['type']) {
  110. return CatchResponse::fail('学校/班级/年级选择与类型不一致');
  111. }
  112. // var_dump($type_remark);
  113. if ($type_remark == 'school') {
  114. if ($data['enable']) {
  115. $data['enable'] = 1;
  116. //不能重复启用
  117. $where = ['school_id'=>$department_id,'type'=>'school','enable'=>1];
  118. $info = $this->noticeModel->where($where)->find();
  119. if (!empty($info) && $id != $info['id']) {
  120. return CatchResponse::fail('该类型公告已有启用');
  121. }
  122. }else{
  123. $data['enable'] = 0;
  124. }
  125. $data['school_id'] = $department_id;
  126. }
  127. if ($type_remark == 'grade') {
  128. if ($data['enable']) {
  129. $data['enable'] = 1;
  130. //不能重复启用
  131. $where = ['grade_id'=>$department_id,'type'=>'grade','enable'=>1];
  132. $info = $this->noticeModel->where($where)->find();
  133. if (!empty($info) && $id != $info['id']) {
  134. return CatchResponse::fail('该类型公告已有启用');
  135. }
  136. }else{
  137. $data['enable'] = 0;
  138. }
  139. $data['grade_id'] = $department_id;
  140. $data['school_id'] = Department::where('id', $department_id)->value('parent_id');
  141. }
  142. if ($type_remark == 'class') {
  143. if ($data['enable']) {
  144. $data['enable'] = 1;
  145. //不能重复启用
  146. $where = ['class_id'=>$department_id,'type'=>'class','enable'=>1];
  147. $info = $this->noticeModel->where($where)->find();
  148. if (!empty($info) && $id != $info['id']) {
  149. return CatchResponse::fail('该类型公告已有启用');
  150. }
  151. }else{
  152. $data['enable'] = 0;
  153. }
  154. $data['class_id'] = $department_id;
  155. $data['grade_id'] = Department::where('id', $department_id)->value('parent_id');
  156. $data['school_id'] = Department::where('id', $data['grade_id'])->value('parent_id');
  157. }
  158. unset($data['department_id']);
  159. return CatchResponse::success($this->noticeModel->updateBy($id, $data));
  160. }
  161. /**
  162. * 删除
  163. * @time 2021年05月28日 17:16
  164. * @param $id
  165. */
  166. public function delete($id): \think\Response
  167. {
  168. return CatchResponse::success($this->noticeModel->deleteBy($id));
  169. }
  170. }