|
@@ -805,7 +805,10 @@ function __construct(){
|
|
|
$res = curl_exec($ch);
|
|
|
curl_close($ch);
|
|
|
$this->logic_ding->sendToDing("shopfiy的运单同步第一步".json_encode($post)."|".$res);
|
|
|
-
|
|
|
+ //如果为空 啥都不用执行 直接返回 期待下次执行
|
|
|
+ if(empty($res)){
|
|
|
+ return ;
|
|
|
+ }
|
|
|
$a = json_decode($res,true);
|
|
|
$od = array();
|
|
|
foreach ($a['fulfillment_orders'] as $v)
|