|
@@ -503,6 +503,9 @@ class ApiAction extends Action {
|
|
if($lock_state == 1){
|
|
if($lock_state == 1){
|
|
$lastLoction = Redis('rfld_gps_last_location', 'hash');
|
|
$lastLoction = Redis('rfld_gps_last_location', 'hash');
|
|
$lockInfo = $lastLoction->get($gpsNumber);
|
|
$lockInfo = $lastLoction->get($gpsNumber);
|
|
|
|
+ if(!$lockInfo){
|
|
|
|
+ json_fail('无法获取到末次定位位置,请确保定位正常');
|
|
|
|
+ }
|
|
|
|
|
|
$lockInfoRedis = Redis('czapp_lockinfo', 'hash');
|
|
$lockInfoRedis = Redis('czapp_lockinfo', 'hash');
|
|
$lockInfoRes = $lockInfoRedis->add(array($gpsNumber => $lockInfo));
|
|
$lockInfoRes = $lockInfoRedis->add(array($gpsNumber => $lockInfo));
|
|
@@ -830,8 +833,16 @@ class ApiAction extends Action {
|
|
$lng2 = $result[$i+1]['lng'];
|
|
$lng2 = $result[$i+1]['lng'];
|
|
$dist = $this->get_2points_distance($lat1,$lng1,$lat2,$lng2 );
|
|
$dist = $this->get_2points_distance($lat1,$lng1,$lat2,$lng2 );
|
|
$totalDist += $dist;
|
|
$totalDist += $dist;
|
|
|
|
+
|
|
$time = strtotime($result[$i+1]['OnlineTime']) - strtotime($result[$i]['OnlineTime']);
|
|
$time = strtotime($result[$i+1]['OnlineTime']) - strtotime($result[$i]['OnlineTime']);
|
|
- $totalTime += ($time/3600);
|
|
|
|
|
|
+
|
|
|
|
+ if($time < 300){
|
|
|
|
+ $totalTime += $time;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if($totalTime){
|
|
|
|
+ $totalTime = $totalTime/3600;
|
|
}
|
|
}
|
|
|
|
|
|
return array(
|
|
return array(
|