WorkLocation.php 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. namespace catchAdmin\worklocation\controller;
  3. use catcher\base\CatchRequest as Request;
  4. use catcher\CatchResponse;
  5. use catcher\base\CatchController;
  6. use catchAdmin\worklocation\model\WorkLocation as workLocationModel;
  7. use think\facade\Db;
  8. class WorkLocation extends CatchController
  9. {
  10. protected $workLocationModel;
  11. public function __construct(WorkLocationModel $workLocationModel)
  12. {
  13. $this->workLocationModel = $workLocationModel;
  14. }
  15. /**
  16. * 列表
  17. * @time 2022年05月19日 13:36
  18. * @param Request $request
  19. */
  20. public function index(Request $request) : \think\Response
  21. {
  22. return CatchResponse::paginate($this->workLocationModel->getList());
  23. }
  24. /**
  25. * 保存信息
  26. * @time 2022年05月19日 13:36
  27. * @param Request $request
  28. */
  29. public function save(Request $request) : \think\Response
  30. {
  31. return CatchResponse::success($this->workLocationModel->storeBy($request->post()));
  32. }
  33. /**
  34. * 读取
  35. * @time 2022年05月19日 13:36
  36. * @param $id
  37. */
  38. public function read($id) : \think\Response
  39. {
  40. return CatchResponse::success($this->workLocationModel->findBy($id));
  41. }
  42. /**
  43. * 更新
  44. * @time 2022年05月19日 13:36
  45. * @param Request $request
  46. * @param $id
  47. */
  48. public function update(Request $request, $id) : \think\Response
  49. {
  50. return CatchResponse::success($this->workLocationModel->updateBy($id, $request->post()));
  51. }
  52. /**
  53. * 删除
  54. * @time 2022年05月19日 13:36
  55. * @param $id
  56. */
  57. public function delete($id) : \think\Response
  58. {
  59. return CatchResponse::success($this->workLocationModel->deleteBy($id,true));
  60. }
  61. //统计列表
  62. public function getTotal(Request $request)
  63. {
  64. $device_model_list =Db::name('device_mold')->where('device_type',4)->select();
  65. $array = [];
  66. // fan_id 风机 id 风机编号
  67. foreach($device_model_list as $item)
  68. { $worklist =[];
  69. $where=[];
  70. $ids = Db::name('fan')->where('fan_model',$item["id"])->column('id');
  71. $where[] =['fan_id','in',implode(",",$ids)];
  72. //创建时间 扭矩
  73. //排序 从小到大
  74. $list = $this->workLocationModel->where($where)->order('created_at','asc')->select();
  75. foreach($list as $it)
  76. {
  77. $worklist[] = [$it['created_at']=>$it['torque']];
  78. }
  79. $array[] =["name"=>$item['name'],'data'=>$worklist];
  80. }
  81. return CatchResponse::success($array,10000);
  82. }
  83. }