likang 2 년 전
부모
커밋
a2eed98529
2개의 변경된 파일43개의 추가작업 그리고 6개의 파일을 삭제
  1. 8 1
      catch/tag_history/controller/Report.php
  2. 35 5
      catch/tag_history/controller/TagHistory.php

+ 8 - 1
catch/tag_history/controller/Report.php

@@ -1,5 +1,12 @@
 <?php
-
+/*
+ * @Descripttion: 
+ * @version: 1.0.0
+ * @Author: likang
+ * @Date: 2022-08-12 11:36:16
+ * @LastEditors: likang
+ * @LastEditTime: 2022-08-24 10:23:06
+ */
 
 namespace catchAdmin\tag_history\controller;
 

+ 35 - 5
catch/tag_history/controller/TagHistory.php

@@ -35,6 +35,21 @@ class TagHistory extends CatchController
         $endtime = isset($data['endtime']) ? $data['endtime'] : "";
         $meter = isset($data['meter']) ? $data['meter'] : "";
         $where = [];
+        $create_id = $request->user()->id;
+
+        $bool = Db::name('user_has_roles')->where('uid', $create_id)->where('role_id', 3)->find();
+        if ($bool) {
+
+            $where[] = ['mac', 'in', '30B5F1013899'];
+            $where[] = ['lable', 'in', "3543245626,3544976938,3544261098,1539178988,3544517098,3544959402,3542053498,3543226346,3544413306"];
+        } else {
+            $where[] = ['mac', 'not in', '30B5F1013899'];
+            $where[] = ['lable', 'not in', "3543245626,3544976938,3544261098,1539178988,3544517098,3544959402,3542053498,3543226346,3544413306"];
+        }
+
+
+
+
         if (!empty($time)) {
             $where[] = ['addTime', '>=', $time];
         } else {
@@ -134,10 +149,17 @@ class TagHistory extends CatchController
      * @name: likang
      * @return {*}
      */
-    public function getStations()
+    public function getStations(Request $request)
     {
-
-        $list = $this->tagHistoryModel->group('mac')->column('mac');
+        $create_id = $request->user()->id;
+        $where = [];
+        $bool = Db::name('user_has_roles')->where('uid', $create_id)->where('role_id', 3)->find();
+        if ($bool) {
+            $where[] = ['mac', 'in', '30B5F1013899'];
+        } else {
+            $where[] = ['mac', 'not in', '30B5F1013899'];
+        }
+        $list = $this->tagHistoryModel->group('mac')->where($where)->column('mac');
         return CatchResponse::success($list);
     }
     /**
@@ -145,9 +167,17 @@ class TagHistory extends CatchController
      * @name: likang
      * @return {*}
      */
-    public function getTages()
+    public function getTages(Request $request)
     {
-        $list = $this->tagHistoryModel->group('lable')->column('lable');
+        $create_id = $request->user()->id;
+        $where = [];
+        $bool = Db::name('user_has_roles')->where('uid', $create_id)->where('role_id', 3)->find();
+        if ($bool) {
+            $where[] = ['lable', 'in', "3543245626,3544976938,3544261098,1539178988,3544517098,3544959402,3542053498,3543226346,3544413306"];
+        } else {
+            $where[] = ['lable', 'not in', "3543245626,3544976938,3544261098,1539178988,3544517098,3544959402,3542053498,3543226346,3544413306"];
+        }
+        $list = $this->tagHistoryModel->group('lable')->where($where)->column('lable');
         return CatchResponse::success($list);
     }
     /**