bztang-admin/vendor/overtrue/wechat/src/Work/Invoice/Client.php

88 lines
2.5 KiB
PHP

<?php
/*
* This file is part of the overtrue/wechat.
*
* (c) overtrue <i@overtrue.me>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace EasyWeChat\Work\Invoice;
use EasyWeChat\Kernel\BaseClient;
/**
* Class Client.
*
* @author mingyoung <mingyoungcheung@gmail.com>
*/
class Client extends BaseClient
{
/**
* @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string
*
* @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function get(string $cardId, string $encryptCode)
{
$params = [
'card_id' => $cardId,
'encrypt_code' => $encryptCode,
];
return $this->httpPostJson('cgi-bin/card/invoice/reimburse/getinvoiceinfo', $params);
}
/**
* @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string
*
* @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function select(array $invoices)
{
$params = [
'item_list' => $invoices,
];
return $this->httpPostJson('cgi-bin/card/invoice/reimburse/getinvoiceinfobatch', $params);
}
/**
* @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string
*
* @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function update(string $cardId, string $encryptCode, string $status)
{
$params = [
'card_id' => $cardId,
'encrypt_code' => $encryptCode,
'reimburse_status' => $status,
];
return $this->httpPostJson('cgi-bin/card/invoice/reimburse/updateinvoicestatus', $params);
}
/**
* @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string
*
* @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function batchUpdate(array $invoices, string $openid, string $status)
{
$params = [
'openid' => $openid,
'reimburse_status' => $status,
'invoice_list' => $invoices,
];
return $this->httpPostJson('cgi-bin/card/invoice/reimburse/updatestatusbatch', $params);
}
}