|
@@ -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);
|
|
|
}
|
|
|
/**
|