[更新]修复企业打款查询

This commit is contained in:
Anyon 2018-05-11 19:20:46 +08:00
parent 1278e575b3
commit 8853710635
2 changed files with 6 additions and 0 deletions

View File

@ -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) {

View File

@ -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);
} }