Note.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\model\NoteLog;
  4. use app\BaseController;
  5. use think\console\command\Make;
  6. use think\facade\Db;
  7. use think\App;
  8. class Note extends BaseController
  9. {
  10. public $post="";
  11. public function __construct(App $app)
  12. {
  13. parent::__construct($app);
  14. $this->post = $this->request->post();
  15. }
  16. public function create(){
  17. $token = isset($this->post['token']) && $this->post['token'] !=="" ?trim($this->post['token']):"";
  18. $title = isset($this->post['title']) && $this->post['title']!==""? trim($this->post['title']):"";
  19. if($title==""){
  20. return error_show(1002,"参数title不能为空");
  21. }
  22. $remark = isset($this->post['remark']) && $this->post['remark']!==""? trim($this->post['remark']):"";
  23. if($remark==""){
  24. return error_show(1002,"参数remark不能为空");
  25. }
  26. $company_type= isset($this->post['company_type']) && $this->post['company_type']!==""? trim($this->post['company_type']):"";
  27. if($company_type==""){
  28. return error_show(1002,"参数company_type不能为空");
  29. }
  30. $model_id= isset($this->post['model_id']) && $this->post['model_id']!==""? $this->post['model_id']:[];
  31. $noteNo= isset($this->post['noteNo']) && $this->post['noteNo'] !==""? $this->post['noteNo']:"";
  32. $bugNo= makeNo("BG");
  33. $apply_id =VerifyTokens($token);
  34. if(empty($apply_id)||$apply_id['code']!=0){
  35. return error_show($apply_id['code'],$apply_id['message']);
  36. }
  37. $rm= isset($apply_id["data"]['id']) ? $apply_id["data"]['id'] : "";
  38. $ri= isset($apply_id["data"]['nickname']) ? $apply_id["data"]['nickname'] : "";
  39. $tem=[];
  40. $tem['bugNo']=$bugNo;
  41. $tem['title']="";
  42. $tem['level']="";
  43. $tem['status']="";
  44. $tem['remark']="";
  45. $tem['noteNo']="";
  46. //$tem['company_type']="";
  47. $tem['deal_name']="";
  48. $tem['type']="";
  49. //array_column($in,"id");
  50. $tem['model_id']="";
  51. $level= isset($this->post['level']) && $this->post['level']!==""? intval($this->post['level']):"2";
  52. $type= isset($this->post['type']) && $this->post['type']!==""? intval($this->post['type']):"2";
  53. $weight= isset($this->post['weight']) && $this->post['weight']!==""? trim($this->post['weight']):"";
  54. $status= isset($this->post['status']) && $this->post['status']!==""? intval($this->post['status']):"0";
  55. $submit = isset($this->post['submit']) && $this->post['submit']!==""? intval($this->post['submit']):"1";
  56. $data=[
  57. "model_id"=>!empty($model_id) ? array_pop($model_id):"0",
  58. "bugNo"=>$bugNo,
  59. "noteNo"=>$noteNo,
  60. "title"=>$title,
  61. "remark"=>$remark,
  62. "company_type"=>$company_type,
  63. "apply_name"=>$ri,
  64. "apply_id"=>$rm,
  65. "level"=>$level,
  66. "type"=>$type,
  67. "submit"=>$submit,
  68. "weight"=>$weight,
  69. "status"=>$status,
  70. "is_del"=>0,
  71. "addtime"=>date("Y-m-d H:i:s"),
  72. "updatetime"=>date("Y-m-d H:i:s")
  73. ];
  74. $datainfo= Db::name('note')->insert($data);
  75. if($datainfo){
  76. NoteLog::log($tem,$this->post,1);
  77. return error_show(0,"新建成功");
  78. }else{
  79. return error_show(1002,"新建失败");
  80. }
  81. }
  82. public function list(){
  83. $token = isset($this->post['token']) && $this->post['token'] !=="" ?trim($this->post['token']):"";
  84. $page = isset($this->post['page']) && $this->post['page'] !==""? intval($this->post['page']):"1";
  85. $size = isset($this->post['size']) && $this->post['size'] !==""? intval($this->post['size']):"10";
  86. $where =[['is_del','=',0]];
  87. $bugNo =isset($this->post['bugNo']) &&$this->post['bugNo'] !=="" ? trim($this->post['bugNo']):"";
  88. if($bugNo!=""){
  89. $where[]=['bugNo',"like","%$bugNo%"];
  90. }
  91. $model_id =isset($this->post['model_id']) &&$this->post['model_id'] !=="" ? trim($this->post['model_id']):"";
  92. if($model_id!=""){
  93. $where[]=['model_id',"=",$model_id];
  94. }
  95. $noteNo =isset($this->post['noteNo']) &&$this->post['noteNo'] !=="" ? trim($this->post['noteNo']):"";
  96. if($noteNo!=""){
  97. $where[]=['noteNo',"like","%$noteNo%"];
  98. }
  99. $company_type =isset($this->post['company_type']) &&$this->post['company_type'] !=="" ? trim($this->post['company_type']):"";
  100. if($company_type!=""){
  101. $where[]=['company_type',"=",$company_type];
  102. }
  103. $apply_name = isset($this->post['apply_name']) && $this->post['apply_name'] !==""? trim($this->post['apply_name']):"";
  104. if($apply_name!==""){
  105. $where[]=['apply_name',"like","%$apply_name%"];
  106. }
  107. $apply_id =VerifyTokens($token);
  108. if(empty($apply_id)||$apply_id['code']!=0){
  109. return error_show($apply_id['code'],$apply_id['message']);
  110. }
  111. $rm= isset($apply_id["data"]['id']) ? $apply_id["data"]['id'] : "";
  112. $status = isset($this->post['status']) && $this->post['status'] !==""? intval($this->post['status']):"";
  113. if($status!==""){
  114. if($status<8){
  115. $where[]=['status',"=",$status];
  116. }elseif ($status==8){
  117. $where[]=['status',"<=",$status];
  118. $where[]=['status',"<>",5];
  119. }elseif ($status===9){
  120. $where[]=['apply_id',"=",$rm];
  121. }elseif ($status===10){
  122. $str = Db::name('deal')->where(['action_id'=>$rm,'is_del'=>0])->select()->toArray();
  123. $data =array_unique(array_column($str,'bugNo')) ;
  124. $where[]=['bugNo',"in",$data];
  125. }elseif ($status===11){
  126. $var = Db::name('deal')->where(['deal_id'=>$rm,'is_del'=>0,'status'=>0])->select()->toArray();
  127. $da =array_unique(array_column($var,'bugNo')) ;
  128. $where[]=['bugNo',"in",$da];
  129. }
  130. }
  131. $start = isset($this->post['start']) && $this->post['start']!=="" ? $this->post['start']:"";
  132. if($start!==""){
  133. $where[]=['addtime',">=",date('Y-m-d H:i:s',strtotime($start))];
  134. }
  135. $end = isset($this->post['end']) && $this->post['end']!=="" ? $this->post['end']:"";
  136. if($end!==""){
  137. $where[]=['addtime',"<",date('Y-m-d H:i:s',strtotime($end)+24*3600)];
  138. }
  139. $title = isset($this->post['title']) && $this->post['title'] !==""? intval($this->post['title']):"";
  140. if($title!==""){
  141. $where[]=['title',"like","%$title%"];
  142. }
  143. $level = isset($this->post['level']) && $this->post['level'] !==""? intval($this->post['level']):"";
  144. if($level!==""){
  145. $where[]=['level','=',$level];
  146. }
  147. $type = isset($this->post['type']) && $this->post['type'] !==""? intval($this->post['type']):"";
  148. if($type!==""){
  149. $where[]=['type','=',$type];
  150. }
  151. $deal_name= isset($this->post['deal_name']) && $this->post['deal_name'] !==""? trim($this->post['deal_name']):"";
  152. if ($deal_name!==""){
  153. $item = Db::name('deal')->where([["deal_name","like","%$deal_name%"],["is_del","=",0],['status',"=",0]])->select()->toArray();
  154. $cn =array_unique(array_column($item,'bugNo'));
  155. $where[]=["bugNo","in",$cn];
  156. }
  157. $count = Db::name('note')->where($where)->count();
  158. $total = ceil($count/$size);
  159. $page = $page>$total ? $total:$page;
  160. $list = Db::name('note')->where($where)->page($page,$size)->order("addtime desc")->select();
  161. $data=[];
  162. foreach ($list as $value){
  163. $var = Db::name('depart_user')->alias('a')->join("company_item b","a.itemid = b.id","left")
  164. ->where(['a.uid'=>$value['apply_id'],'a.is_del'=>0])->column('b.name,b.id');
  165. $dn=[];
  166. foreach ($var as $vmp){
  167. $dn[]=isset($vmp['id']) && $vmp['id'] !=0 ? make($vmp['id']):[];
  168. }
  169. //$value['rename'] =$var;
  170. $str = Db::name("deal")->where(['bugNo'=>$value['bugNo'],'status'=>0,'is_del'=>0])->find();
  171. $value['deal_id']=isset($str['deal_id']) ?$str['deal_id']:"";
  172. $value['deal_name']=isset($str['deal_name']) ?$str['deal_name']:"";
  173. $value['can']= isset($value['model_id']) && $value['model_id'] !=0 ? made($value['model_id']):[];
  174. $value['company_name']=$dn;
  175. $data[]=$value;
  176. }
  177. return app_show(0,"获取成功",['list'=>$data,'count'=>$count]);
  178. }
  179. public function edit(){
  180. $token = isset($this->post['token']) && $this->post['token'] !=="" ?trim($this->post['token']):"";
  181. $id = isset($this->post['id']) && $this->post['id'] !=="" ? intval($this->post['id']):"";
  182. if($id==""){
  183. return error_show(1002,"参数id不能为空");
  184. }
  185. $info=Db::name('note')->where(['id'=>$id,'is_del'=>0])->find();
  186. if(empty($info)){
  187. return error_show(1004,"未找到数据");
  188. }
  189. $title = isset($this->post['title']) && $this->post['title']!==""? trim($this->post['title']):"";
  190. if($title==""){
  191. return error_show(1002,"参数title不能为空");
  192. }
  193. $model_id= isset($this->post['model_id']) && $this->post['model_id']!==""? $this->post['model_id']:[];
  194. // if(empty($model_id)){
  195. // return error_show(1002,"参数model_id不能为空");
  196. // }
  197. $remark = isset($this->post['remark']) && $this->post['remark']!==""? trim($this->post['remark']):"";
  198. if($remark==""){
  199. return error_show(1002,"参数remark不能为空");
  200. }
  201. $company_type= isset($this->post['company_type']) && $this->post['company_type']!==""? trim($this->post['company_type']):"";
  202. if($company_type==""){
  203. return error_show(1002,"参数company_type不能为空");
  204. }
  205. $level= isset($this->post['level']) && $this->post['level']!==""? intval($this->post['level']):"1";
  206. if($level==""){
  207. return error_show(1002,"参数level不能为空");
  208. }
  209. $status= isset($this->post['status']) && $this->post['status']!==""? intval($this->post['status']):$info['status'];
  210. $noteNo= isset($this->post['noteNo']) && $this->post['noteNo'] !==""? $this->post['noteNo']:"";
  211. $type= isset($this->post['type']) && $this->post['type']!==""? intval($this->post['type']):"0";
  212. if($type===""){
  213. return error_show(1002,"参数type不能为空");
  214. }
  215. $weight= isset($this->post['weight']) && $this->post['weight']!==""? trim($this->post['weight']):"0";
  216. $inf=Db::name('deal')->where(['bugNo'=>$info['bugNo'],'status'=>0,"is_del"=>0])->find();
  217. // $deal_name = isset($this->post['deal_name']) && $this->post['deal_name']!=="" ? trim($this->post['deal_name']):"";
  218. // if($deal_name==""){
  219. // return error_show(1004,"参数deal_name不能为空");
  220. // }
  221. $tem=[];
  222. $tem['noteNo']=$info['noteNo'];
  223. $tem['bugNo']=$info['bugNo'];
  224. $tem['title']=$info['title'];
  225. $tem['level']=$info['level'];
  226. $tem['status']=$info['status'];
  227. $tem['remark']=$info['remark'];
  228. // $tem['company_type']=$info['company_type'];
  229. $tem['deal_name']=isset($inf['deal_name']) ? $inf['deal_name']:"";
  230. $tem['type']=$info['type'];
  231. //array_column($in,"id");
  232. $tem['model_id']=$info['model_id'];
  233. $apply_id =VerifyTokens($token);
  234. if(empty($apply_id)||$apply_id['code']!=0){
  235. return error_show($apply_id['code'],$apply_id['message']);
  236. }
  237. $rm= isset($apply_id["data"]['id']) ? $apply_id["data"]['id'] : "";
  238. $ri= isset($apply_id["data"]['nickname']) ? $apply_id["data"]['nickname'] : "";
  239. $dom = Db::name('manange')->where(['manange_id'=>$rm,'company_id'=>$company_type,'is_del'=>0])->find();
  240. if ($info['status']!=$status){
  241. if($dom==false){
  242. return error_show(1002,"无权限修改");
  243. }
  244. }
  245. $deal_id = isset($this->post['deal_id']) && $this->post['deal_id']!=="" ? intval($this->post['deal_id']):"";
  246. $this->post['deal_name']='';
  247. $datai=[];
  248. if($deal_id!==""){
  249. if($dom==false){
  250. return error_show(1002,"无权限修改");
  251. }
  252. $stn = Db::name('manange')->where(['manange_id'=>$deal_id,'company_id'=>$company_type,'is_del'=>0])->find();
  253. if($stn==false){
  254. return error_show(1002,"处理人不存在");
  255. }
  256. $to= GetInfoById($token,['id'=>$deal_id]);
  257. if((!empty($to) && $to['code']!=0) ||empty($to) ){
  258. return error_show($to['code'],"未找到处理人信息");
  259. }
  260. $in = $to['data'];
  261. $this->post['deal_name']=$in['nickname'];
  262. if(empty($inf)||$info['status']!=$status){
  263. $datai['deal_id'] = $in['id'];
  264. $datai['deal_name'] = $in['nickname'];
  265. $datai['action_id'] =$rm;
  266. $datai['action_name'] = $ri;
  267. $datai['bugNo'] = $info['bugNo'];
  268. $datai['level'] = 1;
  269. $datai['type'] = 1;
  270. $datai['status'] =0;
  271. $datai['is_del'] = 0;
  272. $datai['addtime'] = date("Y-m-d H:i:s");
  273. $datai['updatetime'] = date("Y-m-d H:i:s");
  274. }else{
  275. $datai['action_id'] =$rm;
  276. $datai['action_name'] = $ri;
  277. $datai['id']= $inf['id'];
  278. $datai['deal_name'] = $in['nickname'];
  279. $datai['deal_id'] = $in['id'];
  280. $datai['updatetime'] = date("Y-m-d H:i:s");
  281. }
  282. }
  283. Db::startTrans();
  284. try{
  285. $data=[
  286. "id"=>$id,
  287. "title"=>$title,
  288. "noteNo"=>$noteNo,
  289. "remark"=>$remark,
  290. //"model_id"=>is_null(array_pop($model_id)) ? array_pop($model_id):"0",
  291. "model_id"=>!empty($model_id) ? array_pop($model_id):"0",
  292. "company_type"=>$company_type,
  293. // "apply_name"=>$ri,
  294. // "apply_id"=>$rm,
  295. "level"=>$level,
  296. "type"=>$type,
  297. "weight"=>$weight,
  298. "status"=>$status,
  299. "is_del"=>0,
  300. "updatetime"=>date("Y-m-d H:i:s")
  301. ];
  302. $datainfo = Db::name('note')->where($info)->save($data);
  303. if($datainfo){
  304. if ($info['status']!=$status && $inf!=false){
  305. $inf['action_id']=$rm;
  306. $inf['action_name']=$ri;
  307. $inf['status']=1;
  308. $inf['updatetime']=date("Y-m-d H:i:s");
  309. $dc = Db::name('deal')->where(['id'=>$inf['id'],'status'=>0,'is_del'=>0])->save($inf);
  310. if($dc==false){
  311. Db::rollback();
  312. return error_show(1002,"更新失败");
  313. }
  314. }
  315. if(!empty($datai)){
  316. $dai= Db::name('deal')->save($datai);
  317. if($dai==false){
  318. Db::rollback();
  319. return error_show(1002,"更新失败");
  320. }
  321. }
  322. NoteLog::log($tem,$this->post,2);
  323. Db::commit();
  324. return error_show(0,"更新成功");
  325. }else{
  326. Db::rollback();
  327. return error_show(1002,"更新失败");
  328. }
  329. }catch (\Exception $e){
  330. Db::rollback();
  331. return error_show(1004,$e->getMessage());
  332. }
  333. // $item['deal_id']
  334. }
  335. public function info(){
  336. $id=isset($this->post['id']) && $this->post['id'] !=="" ? intval($this->post['id']):"";
  337. if($id=="") {
  338. return error_show(1002, "参数id不能为空");
  339. }
  340. $info = Db::name('note')->where(['id'=>$id,'is_del'=>0])->find();
  341. $var = Db::name('depart_user')->alias('a')->join("company_item b","a.itemid = b.id","left")
  342. ->where(['a.uid'=>$info['apply_id'],'a.is_del'=>0])->column('b.name,b.id');
  343. $dn=[];
  344. foreach ($var as $vmp){
  345. $dn[]=isset($vmp['id']) && $vmp['id'] !=0 ? make($vmp['id']):[];
  346. }
  347. $item = Db::name('deal')->where(['bugNo'=>$info['bugNo'],'is_del'=>0,'status'=>0])->find();
  348. $info['deal_id']=isset($item['deal_id']) ? $item['deal_id']:"";
  349. $info['deal_name']=isset($item['deal_name']) ? $item['deal_name']:"";
  350. $in= isset($info['model_id']) && $info['model_id'] !=0 ? made($info['model_id']):[];
  351. $info['can']=$in;
  352. $info['company_name']=$dn;
  353. $info['model_id']=array_column($in,"id");
  354. if(empty($info)){
  355. return error_show(1002,"未找到数据");
  356. }else{
  357. return app_show(0,"获取成功",$info);
  358. }
  359. }
  360. public function del(){
  361. $id = isset($this->post['id']) && $this->post['id'] !==""? intval($this->post['id']) :"";
  362. if($id==""){
  363. return error_show(1002,"参数id不能为空");
  364. }
  365. $info=Db::name('note')->where(['id'=>$id,'is_del'=>0])->find();
  366. if(empty($info)){
  367. return error_show(1002,"未找到数据");
  368. }
  369. $str['is_del']=1;
  370. $str['updatetime']=date("Y-m-d H:i:s");
  371. $info=Db::name('note')->where(['is_del'=>0])->save($str);
  372. return $info ? app_show(0,"删除成功") :error_show(1002,"删除失败");
  373. }
  374. }