Commit da8039bf by haojie

1

parent 4c408af5
...@@ -153,11 +153,9 @@ public function usePayCheck(Request $request) ...@@ -153,11 +153,9 @@ public function usePayCheck(Request $request)
$obj->notify_url = config('address.callback'); $obj->notify_url = config('address.callback');
$obj->retry = 1; $obj->retry = 1;
$obj->amount = $amount; $obj->amount = $amount;
$obj->form = $form; # 要转小写
$obj->to = $to; $obj->form = strtolower($form);
Log::error($form); $obj->to = strtolower($to);
Log::error('---');
Log::error($to);
#清空队列 #清空队列
Redis::rpush('pay_notify', json_encode($obj)); Redis::rpush('pay_notify', json_encode($obj));
# 获取状态 # 获取状态
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment