更新保证金接口

This commit is contained in:
yaooo 2023-09-23 15:46:42 +08:00
parent 757ea146e2
commit c386ac7b08

View File

@ -592,6 +592,7 @@ class WechatService
return $this->application->payment->handleNotify(function ($notify, $successful) {
Log::info('微信支付成功回调' . var_export($notify, 1));
if (!$successful) return false;
Log::info('微信支付成功回调111' . var_export($notify, 1));
try {
event('pay_success_' . $notify['attach'], ['order_sn' => $notify['out_trade_no'], 'data' => $notify, 'is_combine' => 0]);
} catch (\Exception $e) {
@ -607,6 +608,7 @@ class WechatService
return $this->application->v3Pay->handleNotify(function ($notify, $successful) {
Log::info('微信支付成功回调' . var_export($notify, 1));
if (!$successful) return false;
Log::info('微信支付成功回调222' . var_export($notify, 1));
try {
event('pay_success_' . $notify['attach'], ['order_sn' => $notify['out_trade_no'], 'data' => $notify, 'is_combine' => 0]);
} catch (\Exception $e) {