Waste.php 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. <?php
  2. namespace app\api\controller\screen;
  3. use app\hander\HelpHander;
  4. use app\api\controller\screen\Index;
  5. use think\Db;
  6. class Waste extends Index
  7. {
  8. public function cateList(){
  9. $type = input('type',1);
  10. if($type == 1){
  11. $map[] = ['create_yyyy','=',date('Y')];
  12. }else{
  13. $map[] = ['create_yyyymm','=',date('Ym')];
  14. }
  15. $list = Db::name('waste_type')
  16. ->field('id,title')
  17. //->where('org_id',$this->orgId)
  18. ->where('del',0)
  19. ->where('enable',1)
  20. ->limit(6)
  21. ->select();
  22. foreach ($list as $k=>$v){
  23. $record = Db::name('waste_record')
  24. ->where('cateid',$v['id'])
  25. ->where('org_id',$this->orgId)
  26. ->where($map)
  27. ->where('del',0)
  28. ->sum('weight');
  29. $list[$k]['kg'] = round($record/1000,1);
  30. }
  31. HelpHander::success($list);
  32. }
  33. public function deviceList(){
  34. $device = Db::name('dep')
  35. ->alias('d')
  36. ->field('d.title,a.id')
  37. ->join('address a','a.dep_id=d.id')
  38. ->where('d.org_id',$this->orgId)
  39. ->where('d.del',0)
  40. ->where('d.enable',1)
  41. ->where('','exp',Db::raw("FIND_IN_SET(7,a.types)"))
  42. ->where('a.del',0)
  43. ->where('a.enable',1)
  44. ->group('d.title')
  45. ->select();
  46. $cate = Db::name('waste_type')
  47. ->field('id,title')
  48. // ->where('org_id',$this->orgId)
  49. ->where('del',0)
  50. ->where('enable',1)
  51. ->select();
  52. foreach ($device as $k=>$v){
  53. $device[$k]['kg'] = Db::name('waste_record')
  54. ->where('org_id',$this->orgId)
  55. ->where('waste_device_id',$v['id'])
  56. ->where('del',0)
  57. ->where('create_yyyymmdd',date('Ymd'))
  58. ->sum('weight');
  59. }
  60. $newList = array_slice(list_sort_by($device,'kg','desc'),0,5);
  61. $lists = $cateTitle = [];
  62. foreach ($cate as $k=>$v){
  63. $cateTitle[] = $v['title'];
  64. $aa = [];
  65. $lists[$k]['title'] = $v['title'];
  66. foreach ($newList as $kk=>$vv){
  67. $record = Db::name('waste_record')
  68. ->where('org_id',$this->orgId)
  69. ->where('waste_device_id',$vv['id'])
  70. ->where('cateid',$v['id'])
  71. ->where('del',0)
  72. ->where('create_yyyymmdd',date('Ymd'))
  73. ->sum('weight');
  74. $aa[] = !empty($record)? round($record/1000,1):0;
  75. }
  76. $lists[$k]['list'] = $aa;
  77. }
  78. $title = array_column($device,'title');
  79. // $cc = [];
  80. // foreach ($cateTitle as $k=>$v){
  81. // $cc[$k]['title'] = $v;
  82. // foreach ($lists as $kk=>$vv){
  83. // $cc[$k]['list'] = $vv;
  84. // }
  85. // }
  86. $data = [
  87. 'title'=>$title,
  88. 'title1'=>$cateTitle,
  89. 'list'=>$lists,
  90. ];
  91. HelpHander::success($data);
  92. }
  93. public function userWorkWaste(){
  94. $record = Db::name('waste_record')
  95. ->where('org_id',$this->orgId)
  96. ->where('del',0)
  97. ->where('create_yyyymmdd',date('Ymd'))
  98. ->group('user_id')
  99. ->column('user_id');
  100. $lists = [];
  101. foreach ($record as $k=>$v){
  102. $list1 = Db::name('waste_record')
  103. ->where('org_id',$this->orgId)
  104. ->where('user_id',$v)
  105. ->where('del',0)
  106. ->where('create_yyyymmdd',date('Ymd'))
  107. ->sum('weight');
  108. $lists[$k]['title'] = Db::name('user')->where('id',$v)->value('real_name');
  109. $lists[$k]['kg'] = round($list1/1000,1);
  110. }
  111. $endData = array_slice(list_sort_by($lists,'kg','desc'),0,5);
  112. $data = [
  113. 'title'=>array_column($endData,'title'),
  114. 'lists'=>array_column($endData,'kg'),
  115. ];
  116. HelpHander::success($data);
  117. }
  118. public function wasteRecord(){
  119. $list = Db::name('waste_record')
  120. ->where('del',0)
  121. ->where('org_id',$this->orgId)
  122. ->where('create_yyyymmdd',date('Ymd'))
  123. ->select();
  124. foreach ($list as $k=>$v){
  125. $list[$k]['device_name'] = Db::name('address')
  126. ->where('id',$v['waste_device_id'])
  127. ->value('title');
  128. $list[$k]['user_name'] = Db::name('user')
  129. ->where('id',$v['user_id'])
  130. ->value('real_name');
  131. if($v['status'] == 0){
  132. $list[$k]['status'] = '已收取';
  133. }elseif ($v['status'] == 1){
  134. $list[$k]['status'] = '已交接';
  135. }elseif ($v['status'] == 2){
  136. $list[$k]['status'] = '已转运';
  137. }else{
  138. $list[$k]['status'] = '医废异常';
  139. }
  140. $list[$k]['create_time'] = date('m-d H:i');
  141. }
  142. $data = [];
  143. foreach ($list as $k=>$v){
  144. $data[$k][] = $v['device_name'];
  145. $data[$k][] = $v['user_name'];
  146. $data[$k][] = $v['create_time'];
  147. $data[$k][] = $v['status'];
  148. }
  149. HelpHander::success($data);
  150. }
  151. public function monthCateRecord(){
  152. $month = input('month','');
  153. if($month !=''){
  154. if($month > 0 && $month < 10){
  155. $date = date('Y').'0'.$month;
  156. }elseif ($month >10){
  157. $date = date('Y').$month;
  158. }
  159. }else{
  160. $date = date('Ym');
  161. }
  162. // $em = cal_days_in_month(CAL_GREGORIAN,$month,date('Y'));
  163. $em = date('t',strtotime($date));
  164. $sDay = strtotime($date.'01');
  165. $arr = [];
  166. for ($i = 0;$i<$em;$i++){
  167. $arr[$i]['date'] = date('m-d',$sDay+$i*86400);
  168. $arr[$i]['ymd'] = date('Ymd',$sDay+$i*86400);
  169. }
  170. $cate = Db::name('waste_type')
  171. ->field('id,title')
  172. // ->where('org_id',$this->orgId)
  173. ->where('del',0)
  174. ->where('enable',1)
  175. ->select();
  176. $lists = $cateTitle = [];
  177. foreach ($cate as $k=>$v){
  178. $cateTitle[] = $v['title'];
  179. $lists[$k]['title'] = $v['title'];
  180. $aa = [];
  181. foreach ($arr as $kk=>$vv){
  182. $record = Db::name('waste_record')
  183. ->where('org_id',$this->orgId)
  184. ->where('cateid',$v['id'])
  185. ->where('del',0)
  186. ->where('create_yyyymmdd',$vv['ymd'])
  187. ->sum('weight');
  188. $aa[$kk] = $record>0? round($record/1000,1):0;
  189. }
  190. $lists[$k]['list'] = $aa;
  191. }
  192. // $cc = [];
  193. // foreach ($cateTitle as $k=>$v){
  194. // $cc[$k]['title'] = $v;
  195. // foreach ($lists as $kk=>$vv){
  196. // $cc[$k]['list'] = $vv['weight'];
  197. // }
  198. // }
  199. $data = [
  200. 'date' =>array_column($arr,'date'),
  201. 'cate' =>$cateTitle,
  202. 'list'=>$lists
  203. ];
  204. HelpHander::success($data);
  205. }
  206. // 医废收取量统计 当天及30天内平均收取重量
  207. public function depRecord(){
  208. //先取30内的科室
  209. $curDay = date('Ymd');
  210. $start = date('Ymd',strtotime(date('Y-m-d')) - 29*24*60*60);
  211. $lists = Db::name('waste_record')
  212. ->alias('wr')
  213. ->join('address a','a.id = wr.waste_device_id')
  214. ->join('dep d','d.id = a.dep_id')
  215. ->where('wr.org_id',$this->orgId)
  216. ->where('wr.del',0)
  217. ->where('wr.create_yyyymmdd','<=',$curDay)
  218. ->where('wr.create_yyyymmdd','>=',$start)
  219. ->field('d.id,d.title')
  220. ->group('d.id')
  221. ->distinct(true)
  222. ->select();
  223. $titles = [];
  224. $y1 = [];
  225. $y2 = [];
  226. foreach ($lists as $k=>$v){
  227. $titles[] = $v['title'];
  228. $count1 = Db::name('waste_record')
  229. ->where('org_id',$this->orgId)
  230. ->where('del',0)
  231. ->where('create_yyyymmdd','=',$curDay)
  232. ->sum('weight');
  233. $y1[] = round($count1/1000,1);
  234. $count2 = Db::name('waste_record')
  235. ->where('org_id',$this->orgId)
  236. ->where('del',0)
  237. ->where('create_yyyymmdd','<=',$curDay)
  238. ->where('create_yyyymmdd','>=',$start)
  239. ->sum('weight');
  240. $y2[] = round(($count2/1000)/30,1);
  241. }
  242. HelpHander::success(['titles' => $titles,'y1' => $y1,'y2' => $y2]);
  243. }
  244. public function depRecordList(){
  245. $dep = Db::name('dep')
  246. ->alias('d')
  247. ->field('d.title,a.id')
  248. ->join('address a','a.dep_id=d.id')
  249. ->where('d.org_id',$this->orgId)
  250. ->where('d.del',0)
  251. ->where('d.enable',1)
  252. ->where('','exp',Db::raw("FIND_IN_SET(7,a.types)"))
  253. ->where('a.del',0)
  254. ->where('a.enable',1)
  255. ->group('d.title')
  256. ->limit(5)
  257. ->select();
  258. $x = $y1 = $y2 = [];
  259. foreach ($dep as $k=>$v){
  260. $x[] = $v['title'];
  261. $record = Db::name('waste_record')
  262. ->where('waste_device_id',$v['id'])
  263. ->where('create_yyyymmdd',date('Ymd'))
  264. ->where('del',0)
  265. ->sum('weight');
  266. $y1[] = round($record/1000,1);
  267. $record2 = Db::name('waste_record')
  268. ->where('waste_device_id',$v['id'])
  269. ->where('create_yyyymmdd','>',date("Ymd",mktime(0,0,0,date("m")-1,date("d"),date("Y"))))
  270. ->where('create_yyyymmdd','<=',date('Ymd'))
  271. ->where('del',0)
  272. ->sum('weight');
  273. $y2[] = round($record2/1000/30,1);
  274. }
  275. HelpHander::success(['x'=>$x,'y1'=>$y1,'y2'=>$y2]);
  276. }
  277. }