- 开始使用
- 公众号
- 微信支付
- 小程序
- 开放平台
- 企业微信
- 企业微信开放平台
- 小微商户
- 自定义
- 其他
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
电子发票
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论