likang 2 years ago
parent
commit
5ba5a83253
1 changed files with 15 additions and 1 deletions
  1. 15 1
      catch/tag_history/controller/TagHistory.php

+ 15 - 1
catch/tag_history/controller/TagHistory.php

@@ -45,6 +45,8 @@ class TagHistory extends CatchController
         $six = Db::name('user_has_roles')->where('uid', $create_id)->where('role_id', 6)->find();
         //用于牛儿农户
         $nonghu = Db::name('user_has_roles')->where('uid', $create_id)->where('role_id', 7)->find();
+        //cs店
+        $cs_store = Db::name('user_has_roles')->where('uid', $create_id)->where('role_id', 8)->find();
 
         if (!empty($time)) {
             $where[] = ['addTime', '>=', $time];
@@ -100,6 +102,9 @@ class TagHistory extends CatchController
         } else if ($manage) {
             $where[] = ['mac', 'in', '30B5F10138BA'];
             $where[] = ['lable', 'in', "87011111CFC1,8702222CFC1,8702222CFC1"];
+        } else if ($cs_store) {
+            $where[] = ['mac', 'in', '30B5F1013238'];
+            $where[] = ['lable', 'in', "000080000001,000080000002"];
         }
 
         $list = $this->tagHistoryModel->group('mac,lable')->where($where)
@@ -188,7 +193,8 @@ class TagHistory extends CatchController
         $six = Db::name('user_has_roles')->where('uid', $create_id)->where('role_id', 6)->find();
         //用于牛儿农户
         $nonghu = Db::name('user_has_roles')->where('uid', $create_id)->where('role_id', 7)->find();
-
+        //cs店
+        $cs_store = Db::name('user_has_roles')->where('uid', $create_id)->where('role_id', 8)->find();
 
         if ($bool) {
             $where[] = ['mac', 'in', '30B5F1013899'];
@@ -202,6 +208,8 @@ class TagHistory extends CatchController
             $where[] = ['mac', 'in', '30B5F1013801'];
         } elseif ($manage) {
             $where[] = ['mac', 'in', '30B5F10138BA'];
+        } elseif ($cs_store) {
+            $where[] = ['mac', 'in', '30B5F1013238'];
         }
         $list = $this->tagHistoryModel->group('mac')->where($where)->column('mac');
         return CatchResponse::success($list);
@@ -225,6 +233,9 @@ class TagHistory extends CatchController
         $six = Db::name('user_has_roles')->where('uid', $create_id)->where('role_id', 6)->find();
         //用于牛儿农户
         $nonghu = Db::name('user_has_roles')->where('uid', $create_id)->where('role_id', 7)->find();
+        //测试cs店
+        $cs_store = Db::name('user_has_roles')->where('uid', $create_id)->where('role_id', 8)->find();
+
 
         if ($bool) {
             $where[] = ['lable', 'in', "3543245626,3544976938,3544261098,1539178988,3544517098,3544959402,3542053498,3543226346,3544413306"];
@@ -238,7 +249,10 @@ class TagHistory extends CatchController
             $where[] = ['lable', 'in', "0000e2b7a905,0000e2b7a2c5,0000ea511abe,0000e2b6d355"];
         } else if ($manage) {
             $where[] = ['lable', 'in', "87011111CFC1,8702222CFC1,8702222CFC1"];
+        } else if ($cs_store) {
+            $where[] = ['lable', 'in', "000080000001,000080000002"];
         }
+
         $list = $this->tagHistoryModel->group('lable')->where($where)->column('lable');
         return CatchResponse::success($list);
     }