返回介绍

电子发票

发布于 2021-04-03 04:02:27 字数 3021 浏览 1262 评论 0 收藏 0

$config = [
    'corp_id' => 'xxxxxxxxxxxxxxxxx',
    'secret'   => 'xxxxxxxxxx',
    //...
];

$app = Factory::work($config);

查询电子发票

https://work.weixin.qq.com/api/doc

API:

mixed get(string $cardId, string $encryptCode)

example:

$app->invoice->get('CARDID', 'ENCRYPTCODE');

批量查询电子发票

https://work.weixin.qq.com/api/doc

API:

mixed select(array $invoices)

{info} $invoices: 发票参数列表

example:

$invoices = [
    ["card_id" => "CARDID1", "encrypt_code" => "ENCRYPTCODE1"],
    ["card_id" => "CARDID2", "encrypt_code" => "ENCRYPTCODE2"]
];

$app->invoice->select($invoices);

更新发票状态

https://work.weixin.qq.com/api/doc

API:

mixed update(string $cardId, string $encryptCode, string $status)

{warning} $status: 发报销状态

  • INVOICE_REIMBURSE_INIT:发票初始状态,未锁定;
  • INVOICE_REIMBURSE_LOCK:发票已锁定,无法重复提交报销;
  • INVOICE_REIMBURSE_CLOSURE:发票已核销,从用户卡包中移除

批量更新发票状态

https://work.weixin.qq.com/api/doc

API:

mixed batchUpdate(array $invoices, string $openid, string $status)

example:

$invoices = [
    ["card_id" => "CARDID1", "encrypt_code" => "ENCRYPTCODE1"],
    ["card_id" => "CARDID2", "encrypt_code" => "ENCRYPTCODE2"]
];
$openid = 'oV-gpwSU3xlMXbq0PqqRp1xHu9O4';

$status = 'INVOICE_REIMBURSE_CLOSURE';

$app->invoice->batchUpdate($invoices, $openid, $status)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文