增加海关

This commit is contained in:
邹景立 2021-03-23 18:11:48 +08:00
parent 463c677cfd
commit 60540547d1
2 changed files with 58 additions and 2 deletions

5
We.php
View File

@ -74,8 +74,9 @@ use WeChat\Exceptions\InvalidInstanceException;
*
* ----- WePay -----
* @method \WePay\Bill WePayBill($options = []) static 微信商户账单及评论
* @method \WePay\Coupon WePayCoupon($options = []) static 微信商户代金券
* @method \WePay\Order WePayOrder($options = []) static 微信商户订单
* @method \WePay\Coupon WePayCoupon($options = []) static 微信商户代金券
* @method \WePay\Custom WePayCustom($options = []) static 微信商户海关
* @method \WePay\Refund WePayRefund($options = []) static 微信商户退款
* @method \WePay\Redpack WePayRedpack($options = []) static 微信红包支持
* @method \WePay\Transfers WePayTransfers($options = []) static 微信商户打款到零钱
@ -87,7 +88,7 @@ class We
* 定义当前版本
* @var string
*/
const VERSION = '1.2.28';
const VERSION = '1.2.29';
/**
* 静态配置

55
WePay/Custom.php Normal file
View File

@ -0,0 +1,55 @@
<?php
namespace WePay;
use WeChat\Contracts\BasicWePay;
/**
* 商户提交订单到海关
* Class Custom
* @package WePay
*/
class Custom extends BasicWePay
{
/**
* 订单附加信息提交接口
* @param array $options
* @return mixed
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
*/
public function add(array $options = [])
{
$url = 'https://api.mch.weixin.qq.com/cgi-bin/mch/customs/customdeclareorder';
return $this->callPostApi($url, $options, false, 'MD5');
}
/**
* 订单附加信息查询接口
* @param array $options
* @return array
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
*/
public function get(array $options)
{
$url = 'https://api.mch.weixin.qq.com/cgi-bin/mch/customs/customdeclarequery';
return $this->callPostApi($url, $options, false, 'MD5');
}
/**
* 订单附加信息重推接口
* @param array $options
* @return array
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
*/
public function reset(array $options)
{
$url = 'https://api.mch.weixin.qq.com/cgi-bin/mch/newcustoms/customdeclareredeclare';
return $this->callPostApi($url, $options, false, 'MD5');
}
}