Deal.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <?php
  2. namespace app\admin\controller;
  3. use app\BaseController;
  4. use think\facade\Db;
  5. use think\App;
  6. class Deal extends BaseController
  7. {
  8. public $post="";
  9. public function __construct(App $app)
  10. {
  11. parent::__construct($app);
  12. $this->post=$this->request->post();
  13. }
  14. public function create(){
  15. $token = isset($this->post['token']) && $this->post['token'] !=="" ?trim($this->post['token']):"";
  16. $bugNo = isset($this->post['bugNo']) && $this->post['bugNo'] !=="" ? trim($this->post['bugNo']) :"";
  17. if($bugNo==""){
  18. return error_show(1002,"参数bugNo不能为空");
  19. }
  20. $apply_id =verifyToken($token);
  21. if(empty($apply_id)||$apply_id['code']!=0){
  22. return error_show(1002,"申请人数据不存在");
  23. }
  24. $rm= isset($apply_id["data"]['id']) ? $apply_id["data"]['id'] : "";
  25. $ri= isset($apply_id["data"]['nickname']) ? $apply_id["data"]['nickname'] : "";
  26. // $depart= isset($apply_id["data"]['department']) ? $apply_id["data"]['department'] : "";
  27. $level = isset($this->post['level']) && $this->post['level'] !==""? trim($this->post['level']):"";
  28. $type = isset($this->post['type']) && $this->post['type'] !==""? intval($this->post['type']):"0";
  29. $status = isset($this->post['status']) && $this->post['status']!=="" ? intval($this->post['status']):"1";
  30. $data=[
  31. "bugNo"=>$bugNo,
  32. "deal_name"=>$ri,
  33. "deal_id"=>$rm,
  34. // "depart"=>$depart,
  35. "level"=>$level,
  36. "type"=>$type,
  37. "status"=>$status,
  38. "is_del"=>0,
  39. "addtime"=>date("Y-m-d H:i:s"),
  40. "updatetime"=>date("Y-m-d H:i:s")
  41. ];
  42. $datainfo=Db::name('deal')->insert($data);
  43. if($datainfo){
  44. return error_show(0,"新建成功");
  45. }else{
  46. return error_show(1002,"新建失败");
  47. }
  48. }
  49. public function add(){
  50. $token = isset($this->post['token']) && $this->post['token'] !==""? trim($this->post['token']) :"";
  51. // var_dump($this->post);
  52. $id = isset($this->post['id']) ? intval($this->post['id']) : "";
  53. if($id==""){
  54. return error_show(1001,'参数id不能为空');
  55. }
  56. $info = Db::name("note")->where(["id"=>$id,"is_del"=>0])->find();
  57. if(empty($info)){
  58. return error_show(1002,'未找到数据');
  59. }
  60. $company_type = isset($this->post['company_type']) && $this->post['company_type'] !=="" ?trim($this->post['company_type']):"";
  61. if($company_type==""){
  62. return error_show(1002,"参数company_type不能为空");
  63. }
  64. $deal_id = isset($this->post['deal_id']) && $this->post['deal_id'] !==""? intval($this->post['deal_id']) :"";
  65. if ($deal_id==""){
  66. $str['is_del']=1;
  67. $str['updatetime']=date("Y-m-d H:i:s");
  68. $inf=Db::name('deal')->where(['bugNo'=>$info['bugNo'],'status'=>0,"is_del"=>0])->save($str);
  69. return $inf ? app_show(0,"编辑成功") :error_show(1002,"编辑失败");
  70. }
  71. else{
  72. $to= GetInfoById($token,['id'=>$deal_id]);
  73. if((!empty($to) && $to['code']!=0) ||empty($to) ){
  74. return error_show($to['code'],$to['message']);
  75. }
  76. $datai=[];
  77. $in = $to['data'];
  78. $datai['deal_name'] = $in['nickname'];
  79. $datai['deal_id'] = $in['id'];
  80. $datai['bugNo'] = $info['bugNo'];
  81. $datai['is_del'] = 0;
  82. $datai['addtime'] = date("Y-m-d H:i:s");
  83. $datai['updatetime'] = date("Y-m-d H:i:s");
  84. $data= Db::name('deal')->insert($datai);
  85. if($data){
  86. return error_show(0,"添加成功");
  87. }else{
  88. return error_show(1002,"添加失败");
  89. }
  90. }
  91. }
  92. // public function list(){
  93. // $where =[['is_del','=',0]];
  94. // $deal_name = isset($this->post['deal_name']) && $this->post['deal_name'] !== "" ? trim($this->post['deal_name']) : "";
  95. // if ($deal_name !== "") {
  96. // $where[]= ["deal_name",'like',"%$deal_name%"];
  97. // }
  98. // $list=Db::name('deal')->where($where)->order("addtime desc")->select();
  99. // return app_show(0,"获取成功",['list'=>$list]);
  100. // }
  101. // public function select(){
  102. // $company_type = isset($this->post['company_type']) && $this->post['company_type']!==""? trim($this->post['company_type']):"";
  103. // if ($company_type== "") {
  104. // return error_show(1002,"参数company_type不能为空");
  105. // }
  106. // $info = Db::name('note')->where(['is_del'=>0])->field("model_id")->select();
  107. // foreach ($info as $value){
  108. // $value['can']= isset($value['model_id']) && $value['model_id'] !=0 ? made($value['model_id']):[];
  109. // $data[]=$value;
  110. // }
  111. // return app_show(0,"获取成功",$data);
  112. // }
  113. public function MenuAllList(){
  114. $company_type = isset($this->post['company_type']) && $this->post['company_type']!==""? trim($this->post['company_type']):"";
  115. if ($company_type== "") {
  116. return error_show(1002,"参数company_type不能为空");
  117. }
  118. $company_name = isset($this->post['company_name']) && $this->post['company_name']!==""? trim($this->post['company_name']):"";
  119. $data = Db::name("model")->where(['company_type'=>$company_type,'pid'=>0,'is_del'=>0])->select();
  120. $l=[];
  121. foreach ($data as $key=>$value){
  122. $temp=[];
  123. $temp = Db::name("model")->where(['pid'=>$value['id'],'is_del'=>0])
  124. ->select();
  125. $value['child']=$temp;
  126. $l[]=$value;
  127. }
  128. return app_show(0,"获取成功",$l);
  129. }
  130. // public function status(){
  131. // $id = isset($this->post['id']) ? intval($this->post['id']) : "";
  132. // if($id==""){
  133. // return error_show(1001,'参数id不能为空');
  134. // }
  135. // $info = Db::name("deal")->where(["id"=>$id,"is_del"=>0])->find();
  136. // if(empty($info)){
  137. // return error_show(1002,'未找到数据');
  138. // }
  139. // $status = isset($this->post['status'])&&$this->post['status']!=='' ? intval($this->post['status']) : "0";
  140. // if($status===""){
  141. // return error_show(1001,'参数status不能为空');
  142. // }
  143. // $level = isset($this->post['level']) && $this->post['level']!==""? trim($this->post['level']):"1";
  144. // if($level==""){
  145. // return error_show(1001,'参数level不能为空');
  146. // }
  147. // $type = isset($this->post['type'])&&$this->post['type']!=='' ? intval($this->post['type']) : "0";
  148. // if($type==""){
  149. // return error_show(1001,'参数type不能为空');
  150. // }
  151. // $deal_name= isset($this->post['deal_name'])&&$this->post['deal_name']!=='' ? intval($this->post['deal_name']) : "";
  152. // if($deal_name==""){
  153. // return error_show(1001,'参数deal_name不能为空');
  154. // }
  155. // $info['status']= $status;
  156. // $info['deal_name']= $deal_name;
  157. // $info['level']= $level;
  158. // $info['type']= $type;
  159. // $info['updatetime']=date("Y-m-d H:i:s");
  160. // $up = Db::name("deal")->update($info);
  161. // if($up){
  162. // return app_show(0,"更新成功");
  163. // }else{
  164. // return error_show(1005,"更新失败");
  165. // }
  166. // }
  167. }