소스 검색

add lab_ant_tmp to test ant receieve situation of asset station

nana_sen 1 년 전
부모
커밋
02e6ac938b
1개의 변경된 파일18개의 추가작업 그리고 0개의 파일을 삭제
  1. 18 0
      catch/api/controller/Api.php

+ 18 - 0
catch/api/controller/Api.php

@@ -188,6 +188,24 @@ class Api extends CatchController
             $received_state=$redis->hget('api_receiver_asset_state', 'accessClassReport');
             $mac=$list['mac'];
             foreach($list['data'] as $val){
+                if ($received_state == '1') {
+                    # code...
+                    $antData = json_decode( $redis->hGet('lab_ant_tmp',$val['label']) );
+                    if (!$antData) {
+                        # code...
+                        $antData = [
+                            $val['ant'] => 1 
+                        ];
+                    }elseif(!$antData[$val['ant']]){
+                        $antData[$val['ant']] = 1;
+                    }else {
+                        # code...
+                        $antData[$val['ant']] += 1;
+                    }
+                    $redis->hset('lab_ant_tmp',$val['label'], json_encode($antData) );
+                }else{
+                    $redis->del('lab_ant_tmp');
+                }
                 //1 3外 2 4内
                 if($val['ant']=='3'){
                     $val['ant']='1';