|
@@ -27,7 +27,10 @@ class Payment extends Frontend
|
|
|
Db::rollback();
|
|
|
$this->result([],400);
|
|
|
}
|
|
|
- user_log("payment/{$payment['order_no']}",input());
|
|
|
+ user_log("payment/{$payment['order_no']}",[
|
|
|
+ 'input'=>input(),
|
|
|
+ '$_post'=>$_POST
|
|
|
+ ]);
|
|
|
$service=new PayReturnService();
|
|
|
$service->setPayment($payment);
|
|
|
list($isPay,$succ)=$service->process();
|