|
@@ -6,6 +6,7 @@ use catcher\base\CatchRequest as Request;
|
|
|
use catcher\CatchResponse;
|
|
|
use catcher\base\CatchController;
|
|
|
use catchAdmin\worklocation\model\WorkLocation as workLocationModel;
|
|
|
+use think\facade\Db;
|
|
|
|
|
|
class WorkLocation extends CatchController
|
|
|
{
|
|
@@ -66,4 +67,31 @@ class WorkLocation extends CatchController
|
|
|
{
|
|
|
return CatchResponse::success($this->workLocationModel->deleteBy($id,true));
|
|
|
}
|
|
|
+
|
|
|
+ //统计列表
|
|
|
+ public function getTotal(Request $request)
|
|
|
+ {
|
|
|
+ $device_model_list =Db::name('device_mold')->where('device_type',4)->select();
|
|
|
+ $array = [];
|
|
|
+
|
|
|
+ // fan_id 风机 id 风机编号
|
|
|
+ foreach($device_model_list as $item)
|
|
|
+ { $worklist =[];
|
|
|
+ $where=[];
|
|
|
+ $ids = Db::name('fan')->where('fan_model',$item["id"])->column('id');
|
|
|
+ $where[] =['fan_id','in',implode(",",$ids)];
|
|
|
+
|
|
|
+ //创建时间 扭矩
|
|
|
+ //排序 从小到大
|
|
|
+ $list = $this->workLocationModel->where($where)->order('created_at','asc')->select();
|
|
|
+
|
|
|
+ foreach($list as $it)
|
|
|
+ {
|
|
|
+ $worklist[] = [$it['created_at']=>$it['torque']];
|
|
|
+ }
|
|
|
+ $array[] =["name"=>$item['name'],'data'=>$worklist];
|
|
|
+ }
|
|
|
+ return CatchResponse::success($array,10000);
|
|
|
+
|
|
|
+ }
|
|
|
}
|