获取商品和服务税收分类对照表
查询商户在微信支付商户平台中配置的电子发票税收分类编码对照表。
请求参数 | 类型 | 描述 |
---|---|---|
query | object | 声明请求的查询参数 |
sub_mchid | string | 子商户号 |
offset | integer | 本次查询的起始位置 |
limit | integer | 本次查询的最大数量 |
php
$instance->v3->newTaxControlFapiao->merchant->taxCodes->getAsync([
'query' => [
'sub_mchid' => '1900000109',
'offset' => 0,
'limit' => 5,
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/new-tax-control-fapiao/merchant/tax-codes')->getAsync([
'query' => [
'sub_mchid' => '1900000109',
'offset' => 0,
'limit' => 5,
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/new-tax-control-fapiao/merchant/tax-codes']->getAsync([
'query' => [
'sub_mchid' => '1900000109',
'offset' => 0,
'limit' => 5,
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->newTaxControlFapiao->merchant->taxCodes->get([
'query' => [
'sub_mchid' => '1900000109',
'offset' => 0,
'limit' => 5,
],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/new-tax-control-fapiao/merchant/tax-codes')->get([
'query' => [
'sub_mchid' => '1900000109',
'offset' => 0,
'limit' => 5,
],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/new-tax-control-fapiao/merchant/tax-codes']->get([
'query' => [
'sub_mchid' => '1900000109',
'offset' => 0,
'limit' => 5,
],
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典 | 类型 | 描述 |
---|---|---|
offset | integer | 本次查询的起始位置 |
limit | integer | 本次查询的最大数量 |
links | object | 相关链接 |
next | string | 下一页链接 |
prev | string | 上一页链接 |
self | string | 当前链接 |
data | object[] | 本次查询到的数据 |
goods_name | string | 由商户自定义的货物或应税劳务、服务名称 |
goods_id | number | 企业侧维护的货物或应税劳务、服务编码 |
goods_category | string | 税局侧规定的货物或应税劳务、服务分类名称 |
tax_code | string | 货物或应税劳务、服务编码 |
tax_rate | integer | 税率 |
tax_prefer_mark | string | 税收优惠政策标识 |
total_count | integer | 总记录数 |
参阅 官方文档