Subscribe.php 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. <?php
  2. namespace app\bug\controller;
  3. use app\bug\model\WorkAction;
  4. use app\bug\model\WorkSubinfo;
  5. use app\bug\model\WorkSubscr;
  6. use think\App;
  7. use think\Exception;
  8. use think\facade\Validate;
  9. class Subscribe extends Base{
  10. public function __construct(App $app) {
  11. parent::__construct($app);
  12. $this->model=new WorkSubscr();
  13. }
  14. //岗位功能申请新建
  15. public function create(){
  16. $param=$this->request->param(['action'=>'','belong'=>'',"change_action"=>[]],'post','trim');
  17. $valid =Validate::rule([
  18. 'action|岗位角色功能'=>'require|array',
  19. 'belong|系统归属'=>'require|number|in:1,2,3',
  20. 'change_action|岗位角色功能修改记录'=>'require|array'
  21. ]);
  22. if($valid->check($param)==false)return error($valid->getError());
  23. $data = [
  24. 'belong'=>$param['belong'],
  25. 'action'=>$param['action'],
  26. 'role_action'=>WorkRole::where("id","=",$this->roleid)->value("action",""),
  27. 'role_id'=>$this->roleid,
  28. 'apply_id'=>$this->uid,
  29. 'apply_name'=>$this->uname,
  30. ];
  31. $info=[];
  32. if(!empty($param['change_action'])){
  33. $valid_item = Validate::rule([
  34. 'action_id|岗位功能'=>'require|array',
  35. 'type|类型'=>'require|number|in:1,2',
  36. 'remark|备注'=>'max:255'
  37. ]);
  38. $workAction =new WorkAction();
  39. foreach ($param['change_action'] as $item){
  40. if($valid_item->check($item)==false)return error($valid_item->getError());
  41. $temp=[];
  42. $temp['sub_id']="";
  43. $temp['content']=$workAction->GetInfoById($item['action_id'],$param['belong']);
  44. $temp['action_id']=$item['action_id'];
  45. $temp['type']=$item['type'];
  46. $temp['remark']=$item['remark']??"";
  47. $info[]=$temp;
  48. }
  49. }
  50. $this->model->startTrans();
  51. try{
  52. $sub = WorkSubscr::create($data);
  53. if($sub->isEmpty())throw new Exception("功能申请创建失败");
  54. if(empty($info)==false){
  55. foreach ($info as &$item) {
  56. $item['sub_id'] = $sub->id;
  57. }
  58. WorkSubinfo::saveAll($info);
  59. }
  60. $this->model->commit();
  61. return success("功能申请创建成功");
  62. }catch (\Exception $e){
  63. $this->model->rollback();
  64. return error($e->getMessage());
  65. }
  66. }
  67. ////岗位功能申请编辑
  68. public function save(){
  69. $param=$this->request->param(['id'=>'','action'=>'','belong'=>'','change_action'=>[]],'post','trim');
  70. $valid =Validate::rule([
  71. 'id|岗位角色功能申请id'=>'require|number|gt:0',
  72. 'action|岗位角色功能'=>'require|array',
  73. 'belong|系统归属'=>'require|number|in:1,2,3',
  74. 'change_action|岗位角色功能修改记录'=>'require|array'
  75. ]);
  76. if($valid->check($param)==false)return error($valid->getError());
  77. $workInfo= $this->model->findOrEmpty($param['id']);
  78. if($workInfo->isEmpty())return error("功能申请未找到数据");
  79. if($workInfo->status!=1)return error("功能申请当前状态不可修改");
  80. $workInfo->belong= $param['belong'];
  81. $workInfo->action= $param['action'];
  82. $workInfo->role_action= WorkAction::where('id','=',$this->roleid)->value('action','');
  83. $workInfo->role_id= $this->roleid;
  84. $workInfo->apply_id= $this->uid;
  85. $workInfo->apply_name= $this->uid;
  86. $info=[];
  87. $keepId=[];
  88. if(!empty($param['change_action'])){
  89. $valid_item = Validate::rule([
  90. 'action_id|岗位功能'=>'require|array',
  91. 'type|类型'=>'require|number|in:1,2',
  92. 'remark|备注'=>'max:255'
  93. ]);
  94. $workAction =new WorkAction();
  95. foreach ($param['change_action'] as $item){
  96. if($valid_item->check($item)==false)return error($valid_item->getError());
  97. if(isset($item['id']) &&$item['id']>0){
  98. $keepId[]=$item['id'];
  99. continue;
  100. }
  101. $temp=[];
  102. $temp['sub_id']=$workInfo->id;
  103. $temp['content']=$workAction->GetInfoById($item['action_id'],$param['belong']);
  104. $temp['action_id']=$item['action_id'];
  105. $temp['type']=$item['type'];
  106. $temp['remark']=$item['remark']??'';
  107. $info[]=$temp;
  108. }
  109. }
  110. $this->model->startTrans();
  111. try{
  112. $sub = $workInfo->save();
  113. if($sub)throw new Exception('功能申请修改失败');
  114. if(empty($keepId)==false){
  115. $delete =WorkSubinfo::where([["id","not in",$keepId],["sub_id","=",$workInfo->id]])->select();
  116. if($delete->isEmpty()==false){
  117. $del=$delete->delete();
  118. if($del==false)throw new Exception('功能申请修改失败');
  119. }
  120. }
  121. if(empty($info)==false)WorkSubinfo::saveAll($info);
  122. $this->model->commit();
  123. return success('功能申请修改成功');
  124. }catch (\Exception $e){
  125. $this->model->rollback();
  126. return error($e->getMessage());
  127. }
  128. }
  129. //岗位功能申请删除
  130. public function delete(){
  131. $id=$this->request->post('id/d');
  132. $info = $this->model->findOrEmpty($id);
  133. if($info->isEmpty()) error('未找到数据');
  134. if($info->status!=1) error('当前状态不可删除');
  135. $add = $info->delete();
  136. return $add ? success('删除成功'):error('删除失败');
  137. }
  138. //岗位功能申请详情
  139. public function info(){
  140. $id=$this->request->post('id/d');
  141. $info = $this->model->with(['roleInfo',"subInfo"])->findOrEmpty($id);
  142. if($info->isEmpty()) error('未找到数据');
  143. return success('获取成功',$info);
  144. }
  145. //岗位模板新建
  146. public function list(){
  147. $param=$this->request->param(['status'=>'','role_id'=>'','apply_id'=>'','belong'=>'','level'=>'','size'=>1,
  148. 'page'=>15],'post','trim');
  149. $where=[];
  150. if($param['status']!='')$where[]=['status','=',$param['status']];
  151. if($param['belong']!='')$where[]=['belong','=',$param['belong']];
  152. if($param['role_id']!='')$where[]=['role_id','=',$param['role_id']];
  153. if($param['apply_id']!='')$where[]=['apply_id','=',$param['apply_id']];
  154. $list =$this->model->with(["roleInfo",'subInfo'])->where($where)->order('id desc')->paginate(['list_rows'=>$param['size'],
  155. 'page'=>$param['page']]);
  156. return success('获取成功',['list'=>$list->items(),'count'=>$list->total()]);
  157. }
  158. //岗位模板新建
  159. public function status(){
  160. $param=$this->request->param(['id'=>'','status'=>''],'post','trim');
  161. $valid =Validate::rule([
  162. 'id|功能申请ID'=>'require|number|gt:0',
  163. 'status|状态'=>'require|number|in:1,2,3,4,5'
  164. ]);
  165. if($valid->check($param)==false)return error($valid->getError());
  166. $info = $this->model->findOrEmpty($param['id']);
  167. if($info->isEmpty())return error('未找到数据');
  168. $info->status= $param['status'];
  169. $info->check_id= $this->uid;
  170. $info->check_name= $this->uname;
  171. $status=WorkSubscr::$statusCn[$param['status']];
  172. $add = $info->save();
  173. return $add ? success("{$status}成功"):error("{$status}失败");
  174. }
  175. public function infoStatus(){
  176. $param=$this->request->param(['id'=>'','status'=>'','remark'=>''],'post','trim');
  177. $valid =Validate::rule([
  178. 'id|功能申请ID'=>'require|number|gt:0',
  179. 'status|状态'=>'require|number|in:1,2',
  180. 'remark|备注'=>'max:255'
  181. ]);
  182. if($valid->check($param)==false)return error($valid->getError());
  183. $info = WorkSubinfo::with(['workSub'])->where("id",$param['id'])->findOrEmpty();
  184. if($info->isEmpty())return error('未找到数据');
  185. if($info->status!=0)return error('数据已审核');
  186. if($info->workSub->status!=1)return error('功能申请状态有误不可审批');
  187. $info->status= $param['status'];
  188. $info->remark= $param['remark'];
  189. $status=WorkSubscr::$statusCn[$param['status']];
  190. $this->model->startTrans();
  191. try{
  192. $add = $info->save();
  193. if($add==false)throw new Exception("{$status}失败");
  194. $statusArr= WorkSubinfo::where('sub_id',$info->sub_id)->column('status');
  195. $statusSub = $info->workSub->status;
  196. if(count(array_unique($statusArr))==1){
  197. if(in_array(1,$statusArr)){
  198. $statusSub = 3;
  199. }
  200. if(in_array(2,$statusArr)){
  201. $statusSub =4;
  202. }
  203. }else{
  204. if(in_array(1,$statusArr)){
  205. $statusSub = 2;
  206. }
  207. }
  208. $info->workSub->status =$statusSub;
  209. $info->workSub->check_id =$this->uid;
  210. $info->workSub->check_name =$this->uname;
  211. $subup=$info->workSub->save();
  212. if($subup==false)throw new Exception("{$status}失败");
  213. return success("{$status}成功");
  214. $this->model->commit();
  215. }catch (\Exception $e){
  216. $this->model->rollback();
  217. return error($e->getMessage());
  218. }
  219. }
  220. }