同步订单状态

This commit is contained in:
jianghanbo 2024-11-25 17:35:04 +08:00
parent 2f5e68fc06
commit e3c08391b7
1 changed files with 1 additions and 1 deletions

View File

@ -641,7 +641,7 @@ class OrderController extends base
return $this->success(implode("\n", $flow)); return $this->success(implode("\n", $flow));
}catch(\Exception $e) { }catch(\Exception $e) {
Log::info(sprintf('oneClickRepair error:%s, %s, %s', $e->getMessage(), $e->getFile(), $e->getLine()) ); Log::info(sprintf('oneClickRepair error:%s, %s, %s', $e->getMessage(), $e->getFile(), $e->getLine()) );
return $this->error(2006, '出错了:' . $e->getMessage()); return $this->success([]);
} }
} }