From 6071c49d51e2751a1f18b1234cada2be7c1d8475 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Tue, 13 Dec 2022 11:32:04 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=BE=AE=E4=BF=A1V3=E6=89=93?= =?UTF-8?q?=E6=AC=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WePayV3/Transfers.php | 51 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 WePayV3/Transfers.php diff --git a/WePayV3/Transfers.php b/WePayV3/Transfers.php new file mode 100644 index 0000000..325dec3 --- /dev/null +++ b/WePayV3/Transfers.php @@ -0,0 +1,51 @@ +doRequest('POST', '/v3/transfer/batches', json_encode($body, JSON_UNESCAPED_UNICODE), true); + } + + /** + * 通过微信批次单号查询批次单 + * @param string $batchId 微信批次单号(二选一) + * @param string $outBatchNo 商家批次单号(二选一) + * @param boolean $needQueryDetail 查询指定状态 + * @param integer $offset 请求资源的起始位置 + * @param integer $limit 最大明细条数 + * @param string $detailStatus 查询指定状态 + * @return array + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function query($batchId = '', $outBatchNo = '', $needQueryDetail = true, $offset = 0, $limit = 20, $detailStatus = 'ALL') + { + if (empty($batchId)) { + $pathinfo = "/v3/transfer/batches/out-batch-no/{$outBatchNo}"; + } else { + $pathinfo = "/v3/transfer/batches/batch-id/{$batchId}"; + } + $params = http_build_query([ + 'limit' => $limit, + 'offset' => $offset, + 'detail_status' => $detailStatus, + 'need_query_detail' => $needQueryDetail ? 'true' : 'false', + ]); + return $this->doRequest('GET', "{$pathinfo}?{$params}", '', true); + } +} \ No newline at end of file