mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
修改退款接口
This commit is contained in:
parent
af7ea76eae
commit
eca01d957b
@ -16,13 +16,10 @@
|
|||||||
|
|
||||||
namespace WePayV3;
|
namespace WePayV3;
|
||||||
|
|
||||||
use WeChat\Contracts\Tools;
|
|
||||||
use WeChat\Exceptions\InvalidDecryptException;
|
|
||||||
use WeChat\Exceptions\InvalidResponseException;
|
|
||||||
use WePayV3\Contracts\BasicWePay;
|
use WePayV3\Contracts\BasicWePay;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 电商接口 | 订单退款接口
|
* 订单退款接口
|
||||||
* 注意:直连商户退款接口集成在 Order 中
|
* 注意:直连商户退款接口集成在 Order 中
|
||||||
* @deprecated
|
* @deprecated
|
||||||
* @class Refund
|
* @class Refund
|
||||||
@ -38,7 +35,8 @@ class Refund extends BasicWePay
|
|||||||
*/
|
*/
|
||||||
public function create($data)
|
public function create($data)
|
||||||
{
|
{
|
||||||
return $this->doRequest('POST', '/v3/ecommerce/refunds/apply', json_encode($data, JSON_UNESCAPED_UNICODE), true);
|
return Order::instance($this->config)->createRefund($data);
|
||||||
|
// return $this->doRequest('POST', '/v3/ecommerce/refunds/apply', json_encode($data, JSON_UNESCAPED_UNICODE), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -49,8 +47,9 @@ class Refund extends BasicWePay
|
|||||||
*/
|
*/
|
||||||
public function query($refundNo)
|
public function query($refundNo)
|
||||||
{
|
{
|
||||||
$pathinfo = "/v3/ecommerce/refunds/out-refund-no/{$refundNo}";
|
return Order::instance($this->config)->queryRefund($refundNo);
|
||||||
return $this->doRequest('GET', "{$pathinfo}?sub_mchid={$this->config['mch_id']}", '', true);
|
// $pathinfo = "/v3/ecommerce/refunds/out-refund-no/{$refundNo}";
|
||||||
|
// return $this->doRequest('GET', "{$pathinfo}?sub_mchid={$this->config['mch_id']}", '', true);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -63,18 +62,19 @@ class Refund extends BasicWePay
|
|||||||
*/
|
*/
|
||||||
public function notify($xml = '')
|
public function notify($xml = '')
|
||||||
{
|
{
|
||||||
$data = Tools::xml2arr(empty($xml) ? Tools::getRawInput() : $xml);
|
return Order::instance($this->config)->notifyRefund($xml);
|
||||||
if (!isset($data['return_code']) || $data['return_code'] !== 'SUCCESS') {
|
// $data = Tools::xml2arr(empty($xml) ? Tools::getRawInput() : $xml);
|
||||||
throw new InvalidResponseException('获取退款通知XML失败!');
|
// if (!isset($data['return_code']) || $data['return_code'] !== 'SUCCESS') {
|
||||||
}
|
// throw new InvalidResponseException('获取退款通知XML失败!');
|
||||||
try {
|
// }
|
||||||
$key = md5($this->config['mch_v3_key']);
|
// try {
|
||||||
$decrypt = base64_decode($data['req_info']);
|
// $key = md5($this->config['mch_v3_key']);
|
||||||
$response = openssl_decrypt($decrypt, 'aes-256-ecb', $key, OPENSSL_RAW_DATA);
|
// $decrypt = base64_decode($data['req_info']);
|
||||||
$data['result'] = Tools::xml2arr($response);
|
// $response = openssl_decrypt($decrypt, 'aes-256-ecb', $key, OPENSSL_RAW_DATA);
|
||||||
return $data;
|
// $data['result'] = Tools::xml2arr($response);
|
||||||
} catch (\Exception $exception) {
|
// return $data;
|
||||||
throw new InvalidDecryptException($exception->getMessage(), $exception->getCode());
|
// } catch (\Exception $exception) {
|
||||||
}
|
// throw new InvalidDecryptException($exception->getMessage(), $exception->getCode());
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user