tongshanglei %!s(int64=2) %!d(string=hai) anos
pai
achega
9ef155a49d
Modificáronse 1 ficheiros con 8 adicións e 2 borrados
  1. 8 2
      catch/device/controller/Station.php

+ 8 - 2
catch/device/controller/Station.php

@@ -204,13 +204,19 @@ class Station extends CatchController
             }
             $total += $highestRow - 1;
             for ($j = 2; $j <= $highestRow; $j++) {
-                $shortcode++;
+                
                 $arr = array(); //每条设备信息
                 $arr['mac'] = strtoupper(trim($sheet->getCell("A" . $j)->getFormattedValue())); 
-                $arr['longitude'] = trim($sheet->getCell("B" . $j)->getFormattedValue());  
+                if(empty($arr['mac']) ||  strlen($arr['mac'])!=8){
+                    $fail++;
+                    debug_log('importStationError','MAC格式格式不正确,MAC为:'.$arr['mac']);
+                    continue;
+                }
+                $arr['longitude'] = trim($sheet->getCell("B" . $j)->getFormattedValue());
                 $arr['latitude'] = trim($sheet->getCell("C" . $j)->getFormattedValue());  
                 $arr['name'] = trim($sheet->getCell("D" . $j)->getFormattedValue());  
                 $arr['created_at']=time();
+                $shortcode++;
                 $arr['shortcode']=$shortcode;
                 array_push($data,$arr);
                 $arr['DATA_TYPE']='station_save';