|
@@ -99,7 +99,7 @@ function __construct(){
|
|
|
// }
|
|
|
|
|
|
$count = json_encode($count,true);
|
|
|
-
|
|
|
+ $start_time = time();
|
|
|
$ch = curl_init();
|
|
|
curl_setopt($ch,CURLOPT_URL,$url);
|
|
|
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
|
|
@@ -135,6 +135,10 @@ function __construct(){
|
|
|
}
|
|
|
}
|
|
|
$this->logic_ding->sendToDing("云尚快递erp返回信息【".json_encode($g)."】");
|
|
|
+ $end_time = time();
|
|
|
+ if( $end_time - $start_time > 3){
|
|
|
+ $this->logic_ding->addJobs('outtime_order',['number'=>$data['number']]);
|
|
|
+ }
|
|
|
return $g;
|
|
|
}
|
|
|
|