parent
c8344f272e
commit
3e83da8add
|
|
@ -143,14 +143,14 @@ class WC_Huayi_Score extends WC_Payment_Gateway {
|
|||
}
|
||||
|
||||
if ($balanceResult['data']['score'] >= $order->order_total ) {//积分够扣
|
||||
$payResult = $huayiScoreSdk->pay($huayi_uid,$order->order_total,'订单号:'.$order_id);//执行扣款
|
||||
$payResult = $huayiScoreSdk->pay($huayi_uid,$order->order_total,get_bloginfo('name').'订单号:'.$order_id);//执行扣款
|
||||
if (!$payResult) {
|
||||
wc_add_notice( __('结算失败:', 'huayi_score') . $huayiScoreSdk->getError(), 'error' );
|
||||
return;
|
||||
}
|
||||
|
||||
//支付成功
|
||||
if ( $payResult['data']['pay_status'] == 'success' ) {//TODO TEST
|
||||
if ( $payResult['data']['pay_status'] == 'success' ) {
|
||||
|
||||
//更新订单状态
|
||||
//$order->update_status( 'on-hold', __( '等待积分支付', 'huayi_score' ) );//需要支付回调的接口才需要
|
||||
|
|
@ -197,7 +197,7 @@ class WC_Huayi_Score extends WC_Payment_Gateway {
|
|||
|
||||
if ( $huayi_uid > 0 ) {
|
||||
$huayiScoreSdk = new HuayiScoreSdk(array('apiurl'=>$this->apiurl,'token'=>$this->token));
|
||||
$result = $huayiScoreSdk->refund($huayi_uid,$amount,'退款订单号:'.$order_id.'.退款原因:'.$reason);//执行退款
|
||||
$result = $huayiScoreSdk->refund($huayi_uid,$amount,get_bloginfo('name').'退款订单号:'.$order_id.'.退款原因:'.$reason);//执行退款
|
||||
|
||||
if ( $result['data']['refund_status'] == 'success' ) {//TODO TEST
|
||||
$order->add_order_note( sprintf( __( '退款时间: %s - 退款会员ID: %s', 'huayi_score' ), date("Y-m-d H:i:s"),$result['uid'] ) );
|
||||
|
|
|
|||
Loading…
Reference in New Issue