Todo.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. <?php
  2. namespace app\api\controller\screen;
  3. use app\api\controller\screen\Index;
  4. use app\hander\HelpHander;
  5. use think\Db;
  6. use think\helper\Time;
  7. class Todo extends Index
  8. {
  9. //各类型当天工单总数
  10. public function cateTodoCount(){
  11. //保洁
  12. $bjCount = Db::name('todo')
  13. ->where('del',0)
  14. ->where('create_yyyymmdd',date('Ymd'))
  15. ->where('work_type_mode',2)
  16. ->count();
  17. $bjCount2 = Db::name('todo')
  18. ->where('del',0)
  19. ->where('todo_mode',3)
  20. ->where('create_yyyymmdd',date('Ymd'))
  21. ->where('work_type_mode',2)
  22. ->count();
  23. //报修
  24. $bxCount = Db::name('todo')
  25. ->where('del',0)
  26. ->where('create_yyyymmdd',date('Ymd'))
  27. ->where('work_type_mode',1)
  28. ->count();
  29. $bxCount2 = Db::name('todo')
  30. ->where('del',0)
  31. ->where('todo_mode',3)
  32. ->where('create_yyyymmdd',date('Ymd'))
  33. ->where('work_type_mode',1)
  34. ->count();
  35. //隐患
  36. $yhCount = Db::name('todo')
  37. ->where('del',0)
  38. ->where('create_yyyymmdd',date('Ymd'))
  39. ->where('work_type_mode',4)
  40. ->count();
  41. $yhCount2 = Db::name('todo')
  42. ->where('del',0)
  43. ->where('todo_mode',3)
  44. ->where('create_yyyymmdd',date('Ymd'))
  45. ->where('work_type_mode',4)
  46. ->count();
  47. //运送
  48. $ysCount = Db::name('todo')
  49. ->where('del',0)
  50. ->where('create_yyyymmdd',date('Ymd'))
  51. ->where('work_type_mode',3)
  52. ->count();
  53. $ysCount2 = Db::name('todo')
  54. ->where('del',0)
  55. ->where('todo_mode',3)
  56. ->where('create_yyyymmdd',date('Ymd'))
  57. ->where('work_type_mode',3)
  58. ->count();
  59. //陪护
  60. $phCount = Db::name('ph_todo')
  61. ->where('create_time','>=',date('Y-m-d').' 00:00:00')
  62. ->where('create_time','<=',date('Y-m-d').' 23:59:59')
  63. ->count();
  64. $phCount2 = Db::name('ph_todo')
  65. ->where('create_time','>=',date('Y-m-d').' 00:00:00')
  66. ->where('create_time','<=',date('Y-m-d').' 23:59:59')
  67. ->where('status',2)
  68. ->count();
  69. $data = [
  70. 'bj'=>$bjCount.'/'.$bjCount2,
  71. 'bx'=>$bxCount.'/'.$bxCount2,
  72. 'yh'=>$yhCount.'/'.$yhCount2,
  73. 'ys'=>$ysCount.'/'.$ysCount2,
  74. 'ph'=>$phCount.'/'.$phCount2,
  75. 'total'=>$bjCount+$bxCount+$yhCount+$ysCount,
  76. ];
  77. HelpHander::success($data);
  78. }
  79. //任务数据总览
  80. public function taskList(){
  81. $mode = input('mode/d',1);
  82. if(!in_array($mode,[1,2,3,4,5])){
  83. HelpHander::error('参数错误');
  84. }
  85. $data = [];
  86. $header = ['状态', '任务类型', '始发地', '目的地', '需求时间', '执行人', '接单时间', '完成时间'];
  87. if($mode == 5){
  88. $header = ['状态', '开始时间', '结束时间', '工作天数', '创建时间'];
  89. $todo = Db::name('ph_todo')
  90. ->where('org_id',$this->orgId)
  91. // ->where('status','in',[1,2])
  92. ->order('id desc')
  93. ->limit(30)
  94. ->select();
  95. foreach ($todo as $k=>$v){
  96. $data[$k]['status'] = $v['status'];
  97. $data[$k]['start'] = date('H:i',strtotime($v['start']));
  98. $data[$k]['end'] = date('H:i',strtotime($v['end']));
  99. $data[$k]['day'] = $v['day'];
  100. $data[$k]['create_time'] = date('H:i',strtotime($v['create_time']));
  101. }
  102. }else{
  103. if($mode == 1){
  104. $header = ['状态', '执行人', '报修事项', '内容', '接单时间','完成时间'];
  105. }else if($mode == 2||$mode == 4){
  106. $header = ['状态', '执行人', '内容', '接单时间','完成时间'];
  107. }
  108. $todo = Db::name('todo')
  109. ->where('org_id',$this->orgId)
  110. ->where('work_type_mode',$mode)
  111. ->where('del',0)
  112. ->order('id desc')
  113. ->limit(30)
  114. ->field('id,order_id,to_user_id,todo_mode,create_time,confirm_time,todo_content,done_time')
  115. ->select();
  116. foreach ($todo as $k=>$v){
  117. $userName = Db::name('user')->where('id',$v['to_user_id'])->value('real_name');
  118. if($mode == 1){ // 报修
  119. $type = Db::name('order_repair')
  120. ->alias('or')
  121. ->leftJoin('order_type ot','ot.id = or.type_id')
  122. ->where('or.order_id',$v['order_id'])
  123. ->value('title');
  124. $data[$k]['todo_mode'] = $v['todo_mode'];
  125. $data[$k]['user_name'] = $userName?$userName:'';
  126. $data[$k]['type'] = $type?$type:'';
  127. $data[$k]['content'] = $v['todo_content'];
  128. $data[$k]['confirm_time'] = $v['confirm_time']?date('H:i',strtotime($v['confirm_time'])):'';
  129. $data[$k]['done_time'] = $v['done_time']?date('H:i',strtotime($v['done_time'])):'';
  130. }else if($mode == 3){ //运送
  131. $convey = Db::name('order_convey')
  132. ->alias('oc')
  133. ->join('convey_cate cc','cc.id = oc.type')
  134. ->where('oc.order_id',$v['order_id'])
  135. ->field('oc.*,cc.title as cate_title')
  136. ->find();
  137. $userName = Db::name('user')->where('id',$v['to_user_id'])->value('real_name');
  138. $start = Db::name('address')->where('id',$convey['start'])->value('title');
  139. $end = Db::name('address')->where('id',$convey['end'])->value('title');
  140. $data[$k]['todo_mode'] = $v['todo_mode'];
  141. $data[$k]['type'] = $convey?$convey['cate_title']:'';
  142. $data[$k]['start'] = $start?$start:'';
  143. $data[$k]['end'] = $end?$end:'';
  144. $data[$k]['xq_time'] = $convey?date('H:i',strtotime($convey['xq_time'])):'';
  145. $data[$k]['user_name'] = $userName?$userName:'';
  146. $data[$k]['confirm_time'] = $v['confirm_time']?date('H:i',strtotime($v['confirm_time'])):'';
  147. $data[$k]['done_time'] = $v['done_time']?date('H:i',strtotime($v['done_time'])):'';
  148. }else{ // 保洁,应急
  149. $data[$k]['todo_mode'] = $v['todo_mode'];
  150. $data[$k]['user_name'] = $userName?$userName:'';
  151. $data[$k]['content'] = $v['todo_content'];
  152. $data[$k]['confirm_time'] = $v['confirm_time']?date('H:i',strtotime($v['confirm_time'])):'';
  153. $data[$k]['done_time'] = $v['done_time']?date('H:i',strtotime($v['done_time'])):'';
  154. }
  155. }
  156. }
  157. $lists = [];
  158. if($mode == 1){
  159. foreach ($data as $k=>$v){
  160. $status = Db::name('todo_mode')->where('id',$v['todo_mode'])->value('out_content');
  161. if($v['todo_mode'] == 1){
  162. $lists[$k][] = '<span style="color:#FFDA0A;">新订单</span>';
  163. $lists[$k][] = '<span style="color:#FFDA0A;">'.$v['user_name'].'</span>';
  164. $lists[$k][] = '<span style="color:#FFDA0A;">'.$v['type'].'</span>';
  165. $lists[$k][] = '<span style="color:#FFDA0A;">'.$v['content'].'</span>';
  166. $lists[$k][] = '<span style="color:#FFDA0A;">'.$v['confirm_time'].'</span>';
  167. $lists[$k][] = '<span style="color:#FFDA0A;">'.$v['done_time'].'</span>';
  168. }else if($v['todo_mode'] == 2){
  169. $lists[$k][] = '<span style="color:#0FC2DD;">进行中</span>';
  170. $lists[$k][] = '<span style="color:#0FC2DD;">'.$v['user_name'].'</span>';
  171. $lists[$k][] = '<span style="color:#0FC2DD;">'.$v['type'].'</span>';
  172. $lists[$k][] = '<span style="color:#0FC2DD;">'.$v['content'].'</span>';
  173. $lists[$k][] = '<span style="color:#0FC2DD;">'.$v['confirm_time'].'</span>';
  174. $lists[$k][] = '<span style="color:#0FC2DD;">'.$v['done_time'].'</span>';
  175. }else{
  176. $lists[$k][] = $status;
  177. $lists[$k][] = $v['user_name'];
  178. $lists[$k][] = $v['type'];
  179. $lists[$k][] = $v['content'];
  180. $lists[$k][] = $v['confirm_time'];
  181. $lists[$k][] = $v['done_time'];
  182. }
  183. }
  184. }else if($mode == 2 || $mode == 4){
  185. foreach ($data as $k=>$v){
  186. $status = Db::name('todo_mode')->where('id',$v['todo_mode'])->value('out_content');
  187. if($v['todo_mode'] == 1){
  188. $lists[$k][] = '<span style="color:#FFDA0A;">新订单</span>';
  189. $lists[$k][] = '<span style="color:#FFDA0A;">'.$v['user_name'].'</span>';
  190. $lists[$k][] = '<span style="color:#FFDA0A;">'.$v['content'].'</span>';
  191. $lists[$k][] = '<span style="color:#FFDA0A;">'.$v['confirm_time'].'</span>';
  192. $lists[$k][] = '<span style="color:#FFDA0A;">'.$v['done_time'].'</span>';
  193. }else if($v['todo_mode'] == 2){
  194. $lists[$k][] = '<span style="color:#0FC2DD;">进行中</span>';
  195. $lists[$k][] = '<span style="color:#0FC2DD;">'.$v['user_name'].'</span>';
  196. $lists[$k][] = '<span style="color:#0FC2DD;">'.$v['content'].'</span>';
  197. $lists[$k][] = '<span style="color:#0FC2DD;">'.$v['confirm_time'].'</span>';
  198. $lists[$k][] = '<span style="color:#0FC2DD;">'.$v['done_time'].'</span>';
  199. }else{
  200. $lists[$k][] = $status;
  201. $lists[$k][] = $v['user_name'];
  202. $lists[$k][] = $v['content'];
  203. $lists[$k][] = $v['confirm_time'];
  204. $lists[$k][] = $v['done_time'];
  205. }
  206. }
  207. }else if($mode == 3){
  208. foreach ($data as $k=>$v){
  209. $status = Db::name('todo_mode')->where('id',$v['todo_mode'])->value('out_content');
  210. if($v['todo_mode'] == 1){
  211. $lists[$k][] = '<span style="color:#FFDA0A;">新订单</span>';
  212. $lists[$k][] = '<span style="color:#FFDA0A;">'.$v['type'].'</span>';
  213. $lists[$k][] = '<span style="color:#FFDA0A;">'.$v['start'].'</span>';
  214. $lists[$k][] = '<span style="color:#FFDA0A;">'.$v['end'].'</span>';
  215. $lists[$k][] = '<span style="color:#FFDA0A;">'.$v['xq_time'].'</span>';
  216. $lists[$k][] = '<span style="color:#FFDA0A;">'.$v['user_name'].'</span>';
  217. $lists[$k][] = '<span style="color:#FFDA0A;">'.$v['confirm_time'].'</span>';
  218. $lists[$k][] = '<span style="color:#FFDA0A;">'.$v['done_time'].'</span>';
  219. }elseif($v['todo_mode'] == 2){
  220. $lists[$k][] = '<span style="color:#0FC2DD;">进行中</span>';
  221. $lists[$k][] = '<span style="color:#0FC2DD;">'.$v['type'].'</span>';
  222. $lists[$k][] = '<span style="color:#0FC2DD;">'.$v['start'].'</span>';
  223. $lists[$k][] = '<span style="color:#0FC2DD;">'.$v['end'].'</span>';
  224. $lists[$k][] = '<span style="color:#0FC2DD;">'.$v['xq_time'].'</span>';
  225. $lists[$k][] = '<span style="color:#0FC2DD;">'.$v['user_name'].'</span>';
  226. $lists[$k][] = '<span style="color:#0FC2DD;">'.$v['confirm_time'].'</span>';
  227. $lists[$k][] = '<span style="color:#0FC2DD;">'.$v['done_time'].'</span>';
  228. }else{
  229. $lists[$k][] = $status;
  230. $lists[$k][] = $v['type'];
  231. $lists[$k][] = $v['start'];
  232. $lists[$k][] = $v['end'];
  233. $lists[$k][] = $v['xq_time'];
  234. $lists[$k][] = $v['user_name'];
  235. $lists[$k][] = $v['confirm_time'];
  236. $lists[$k][] = $v['done_time'];
  237. }
  238. }
  239. }else if($mode == 5){
  240. foreach ($data as $k=>$v){
  241. $status = '';
  242. if($v['status'] == 0){
  243. $status = '作废';
  244. }else if($v['status'] == 1){
  245. $status = '服务中';
  246. }else if($v['status'] == 2){
  247. $status = '已结束';
  248. }
  249. $lists[$k][] = $status;
  250. $lists[$k][] = $v['start'];
  251. $lists[$k][] = $v['end'];
  252. $lists[$k][] = $v['day'];
  253. $lists[$k][] = $v['create_time'];
  254. }
  255. }
  256. HelpHander::success(['data'=>$lists,'header'=>$header]);
  257. }
  258. //今日工单总数 //项目工单总数 //项目订单总数 //项目任务总数
  259. public function todoCountData(){
  260. $todayCount = Db::name('todo')
  261. ->where('del',0)
  262. ->where('org_id',$this->orgId)
  263. ->where('create_yyyymmdd',date('Ymd'))
  264. ->count();
  265. $todoCount = Db::name('todo')
  266. ->where('del',0)
  267. ->where('org_id',$this->orgId)
  268. ->count();
  269. $orderCount = Db::name('orders')
  270. ->where('del',0)
  271. ->where('org_id',$this->orgId)
  272. ->count();
  273. $task1 = Db::name('device_task')
  274. ->where('del',0)
  275. ->where('org_id',$this->orgId)
  276. ->count();
  277. $task2 = Db::name('patrol_task')
  278. ->where('del',0)
  279. ->where('org_id',$this->orgId)
  280. ->count();
  281. $taskCount = $task1+$task2;
  282. $data = [
  283. 'todayCount'=>$todayCount,
  284. 'todoCount'=>$todoCount,
  285. 'orderCount'=>$orderCount,
  286. 'taskCount'=>$taskCount,
  287. ];
  288. HelpHander::success($data);
  289. }
  290. public function todayTodoData(){
  291. $date = date('Ymd');
  292. $count = Db::name('todo')
  293. ->where('create_yyyymmdd',$date)
  294. ->where('del',0)
  295. ->count();
  296. $count2 = Db::name('todo')
  297. ->where('create_yyyymmdd',$date)
  298. ->where('del',0)
  299. ->where('todo_mode',3)
  300. ->count();
  301. $map[] = ['del','=',0];
  302. $map[] = ['create_yyyymmdd','=',$date];
  303. $bjCount = Db::name('todo')->where('work_type_mode',2)->where($map)->count();
  304. $bj = Db::name('todo')->where('work_type_mode',2)->where('todo_mode',3)->where($map)->count();
  305. $ysCount = Db::name('todo')->where('work_type_mode',3)->where($map)->count();
  306. $ys = Db::name('todo')->where('work_type_mode',3)->where('todo_mode',3)->where($map)->count();
  307. $bxCount = Db::name('todo')->where('work_type_mode',1)->where($map)->count();
  308. $bx = Db::name('todo')->where('work_type_mode',1)->where('todo_mode',3)->where($map)->count();
  309. $yhCount = Db::name('todo')->where('work_type_mode',4)->where($map)->count();
  310. $yh = Db::name('todo')->where('work_type_mode',4)->where('todo_mode',3)->where($map)->count();
  311. $bl = $bjBl = $ysBl = $bxBl = $yhBl = 0;
  312. if($count > 0){
  313. $bl = round($count2/$count*100,0);
  314. }
  315. if($bjCount >0){
  316. $bjBl = round($bj/$bjCount*100,0);
  317. }
  318. if($ysCount >0){
  319. $ysBl = round($ys/$ysCount*100,0);
  320. }
  321. if($bxCount >0){
  322. $bxBl = round($bx/$bxCount*100,0);
  323. }
  324. if($yhCount >0){
  325. $yhBl = round($yh/$yhCount*100,0);
  326. }
  327. $count3 = 0;
  328. if($count == 0){
  329. $count3 = 100;
  330. }else{
  331. $count3 = $count - $count2;
  332. }
  333. $data = [
  334. 'count'=>$count,
  335. 'bl'=>$bl,
  336. 'bjBl'=>$bjBl,
  337. 'bj'=>$bj,
  338. 'ysBl'=>$ysBl,
  339. 'ys'=>$ys,
  340. 'bxBl'=>$bxBl,
  341. 'bx'=>$bx,
  342. 'yhBl'=>$yhBl,
  343. 'yh'=>$yh,
  344. 'list'=>[
  345. ['value'=>$count2],
  346. ['value'=>$count3],
  347. ]
  348. ];
  349. HelpHander::success($data);
  350. }
  351. }