mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
[更新]修复企业打款查询
This commit is contained in:
parent
1278e575b3
commit
8853710635
@ -35,6 +35,8 @@ try {
|
|||||||
$result = $wechat->createTransfers($options);
|
$result = $wechat->createTransfers($options);
|
||||||
echo '<pre>';
|
echo '<pre>';
|
||||||
var_export($result);
|
var_export($result);
|
||||||
|
$result = $wechat->queryTransfers($options['partner_trade_no']);
|
||||||
|
var_export($result);
|
||||||
|
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
|
|
||||||
|
@ -250,6 +250,10 @@ class Pay
|
|||||||
public function queryTransfers($partner_trade_no)
|
public function queryTransfers($partner_trade_no)
|
||||||
{
|
{
|
||||||
$url = 'https://api.mch.weixin.qq.com/mmpaymkttransfers/gettransferinfo';
|
$url = 'https://api.mch.weixin.qq.com/mmpaymkttransfers/gettransferinfo';
|
||||||
|
$this->params->set('appid', $this->config->get('appid'));
|
||||||
|
$this->params->set('mch_id', $this->config->get('mch_id'));
|
||||||
|
$this->params->offsetUnset('mchid');
|
||||||
|
$this->params->offsetUnset('mch_appid');
|
||||||
return $this->callPostApi($url, ['partner_trade_no' => $partner_trade_no], true, 'MD5', false);
|
return $this->callPostApi($url, ['partner_trade_no' => $partner_trade_no], true, 'MD5', false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user