This commit is contained in:
chenbo 2023-09-27 09:40:31 +08:00
parent 34d9ba72ae
commit ebd1b1108e

View File

@ -52,8 +52,8 @@ class ApproveLogic extends BaseLogic
$requestResponse = HttpClient::create()->request('POST', env('url.shop_prefix') . '/api/merchant/syncStatus/'.$shopMerchantInfo['mer_intention_id'], [
'body' => ['status' => $status, 'type' => $approve['type'] ==2 ? 1: 2, 'remark'=> $params['remark']??'']
]);
Log::info('通知商城审批状态-参数', ['status' => $status, 'type' => $approve['type']]);
Log::info('通知商城审批状态-响应', [$requestResponse->getContent()]);
Log::info(['通知商城审批状态-参数', ['status' => $status, 'type' => $approve['type']]]);
Log::info(['通知商城审批状态-响应', [$requestResponse->getContent()]]);
}
public static function detail($id)