From 418e132e3e5ae5fca03df234709dad6d79c9d1f4 Mon Sep 17 00:00:00 2001 From: Anyon Date: Mon, 2 Mar 2020 19:08:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=96=B0=E7=89=88=E6=94=AF?= =?UTF-8?q?=E4=BB=98=E6=89=93=E6=AC=BE=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AliPay/Transfer.php | 42 ++++++++++++++++++++++++++++- We.php | 2 +- _test/alipay-transfer-account.php | 37 ++++++++++++++++++++++++++ _test/alipay-transfer-create.php | 44 +++++++++++++++++++++++++++++++ _test/alipay-transfer-query.php | 38 ++++++++++++++++++++++++++ 5 files changed, 161 insertions(+), 2 deletions(-) create mode 100644 _test/alipay-transfer-account.php create mode 100644 _test/alipay-transfer-create.php create mode 100644 _test/alipay-transfer-query.php diff --git a/AliPay/Transfer.php b/AliPay/Transfer.php index bb745cf..607d478 100644 --- a/AliPay/Transfer.php +++ b/AliPay/Transfer.php @@ -35,7 +35,7 @@ class Transfer extends BasicAliPay } /** - * 创建数据操作 + * 旧版 向指定支付宝账户转账 * @param array $options * @return mixed * @throws \WeChat\Exceptions\InvalidResponseException @@ -45,4 +45,44 @@ class Transfer extends BasicAliPay { return $this->getResult($options); } + + /** + * 新版 向指定支付宝账户转账 + * @param array $options + * @return array|bool + * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException + */ + public function create($options = []) + { + $this->options->set('method', 'alipay.fund.trans.uni.transfer'); + return $this->getResult($options); + } + + /** + * 新版 转账业务单据查询接口 + * @param array $options + * @return array|bool + * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException + */ + public function queryResult($options = []) + { + $this->options->set('method', 'alipay.fund.trans.common.query'); + return $this->getResult($options); + + } + + /** + * 新版 支付宝资金账户资产查询接口 + * @param array $options + * @return array|bool + * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException + */ + public function queryAccount($options = []) + { + $this->options->set('method', 'alipay.fund.account.query'); + return $this->getResult($options); + } } \ No newline at end of file diff --git a/We.php b/We.php index f4bb06b..a81ff1a 100644 --- a/We.php +++ b/We.php @@ -81,7 +81,7 @@ class We * 定义当前版本 * @var string */ - const VERSION = '1.2.13'; + const VERSION = '1.2.17'; /** * 静态配置 diff --git a/_test/alipay-transfer-account.php b/_test/alipay-transfer-account.php new file mode 100644 index 0000000..1d2b289 --- /dev/null +++ b/_test/alipay-transfer-account.php @@ -0,0 +1,37 @@ +queryAccount([ + 'alipay_user_id' => $config['appid'], // 订单号 + 'account_scene_code' => 'SCENE_000_000_000', + ]); + echo '
';
+    var_export($result);
+} catch (Exception $e) {
+    echo $e->getMessage();
+}
+
diff --git a/_test/alipay-transfer-create.php b/_test/alipay-transfer-create.php
new file mode 100644
index 0000000..39d0fc4
--- /dev/null
+++ b/_test/alipay-transfer-create.php
@@ -0,0 +1,44 @@
+create([
+        'out_biz_no'   => time(), // 订单号
+        'trans_amount' => '10', // 转账金额
+        'product_code' => 'TRANS_ACCOUNT_NO_PWD',
+        'biz_scene'    => 'DIRECT_TRANSFER',
+        'payee_info'   => [
+            'identity'      => 'zoujingli@qq.com',
+            'identity_type' => 'ALIPAY_LOGON_ID',
+            'name'          => '邹景立',
+        ],
+    ]);
+    echo '
';
+    var_export($result);
+} catch (Exception $e) {
+    echo $e->getMessage();
+}
+
diff --git a/_test/alipay-transfer-query.php b/_test/alipay-transfer-query.php
new file mode 100644
index 0000000..7e7d99f
--- /dev/null
+++ b/_test/alipay-transfer-query.php
@@ -0,0 +1,38 @@
+queryResult([
+        'out_biz_no'   => '201808080001', // 订单号
+        'product_code' => 'TRANS_ACCOUNT_NO_PWD',
+        'biz_scene'    => 'DIRECT_TRANSFER',
+    ]);
+    echo '
';
+    var_export($result);
+} catch (Exception $e) {
+    echo $e->getMessage();
+}
+