From 1d3aae45e73627b6abb849b9c40f040c4ff20e2a Mon Sep 17 00:00:00 2001 From: chenbo <709206448@qq.com> Date: Tue, 19 Sep 2023 14:40:10 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=A1=E6=89=B9debug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/logic/approve/ApproveLogic.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/common/logic/approve/ApproveLogic.php b/app/common/logic/approve/ApproveLogic.php index 6a65beb01..3ba749003 100644 --- a/app/common/logic/approve/ApproveLogic.php +++ b/app/common/logic/approve/ApproveLogic.php @@ -50,7 +50,7 @@ class ApproveLogic extends BaseLogic $status = $params['check_status'] == 2? 1: 2; // 通知商城审批状态 $requestResponse = HttpClient::create()->request('POST', env('url.shop_prefix') . '/api/merchant/syncStatus/'.$shopMerchantInfo['mer_intention_id'], [ - 'body' => ['status' => $status, 'type' => $approve['type']] + 'body' => ['status' => $status, 'type' => $approve['type'] ==2 ? 1: 2] ]); Log::info('通知商城审批状态-参数', ['status' => $status, 'type' => $approve['type']]); Log::info('通知商城审批状态-响应', [$requestResponse->getContent()]);