tongshanglei 2 anos atrás
pai
commit
91d894f78a
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      catch/yunying/controller/Vehicle.php

+ 2 - 2
catch/yunying/controller/Vehicle.php

@@ -377,7 +377,7 @@ class Vehicle extends CatchController
             for ($j = 2; $j <= $highestRow; $j++) {
                 $arr = array(); //每条设备信息
                 $arr['PLATE_NO'] = strtoupper(trim($sheet->getCell("A" . $j)->getFormattedValue())); 
-                if(empty($arr['PLATE_NO']) ||  strlen($str)!=13){
+                if(empty($arr['PLATE_NO']) ||  strlen($arr['PLATE_NO'])!=13){
                     $fail++;
                     debug_log('importVehicleError','车牌格式不正确,车牌号为:'.$arr['PLATE_NO']);
                     continue;
@@ -390,7 +390,7 @@ class Vehicle extends CatchController
                 $car_type=Db::table("sys_dict_data")->where('type_id', $car_type_id)->whereLike('value','%'.$type.'%')->cache(60)->value('code');
                 $arr['CAR_TYPE']=$car_type?$car_type:'4';
                 $arr['RFID_SN'] = trim($sheet->getCell("D" . $j)->getFormattedValue());  
-                if(empty($arr['RFID_SN']) ||  strlen($str)!=8){
+                if(empty($arr['RFID_SN']) ||  strlen($arr['RFID_SN'])!=8){
                     $fail++;
                     debug_log('importVehicleError','标签格式格式不正确,标签为:'.$arr['RFID_SN']);
                     continue;