|
@@ -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';
|