orderService->onlineCompleted($global_order_id); $this->separateAccountsService->orderOnlineCompleted($global_order_id); Db::commit(); return [ "status" => 200, "code" => 0, "result" => [], "message" => '调用成功' ]; } catch (\Exception $e) { Db::rollBack(); $this->log->event(LogLabel::ONLINE_COMPLETE_LOG, ['exception' => $e->getMessage()]); return [ "status" => 200, "code" =>ErrorCode::SEPARATE_ACCOUNTS_ERROR, "result" => [], "message" => ErrorCode::getMessage(ErrorCode::SEPARATE_ACCOUNTS_ERROR) ]; } } }