DOCS

计算消费税

配置产品测量以准确计算消费税。

BETA

在国际运送酒精产品时,您需要计算消费税,这是对酒精和其他受管制商品等产品的特殊税。当您通过我们的API提供所需的产品测量,或将其添加到您的Zonos Catalog时,Zonos会自动为向加拿大和大多数欧盟国家的货运计算这些税。

概述 

消费税适用于《协调制度》第22章下分类的产品,涵盖非酒精饮料的HS代码小标题2201–2202、酒精饮料、烈酒和发酵产品的HS代码2203–2208,以及醋的HS代码2209。

重要提示:如果您使用Zonos Landed Cost保证并请求报价而不提供第22章产品所需的测量值,将不会返回任何报价。您必须通过API或上传到Zonos Catalog提供必要的测量。

提供所需的测量 

运送酒精或其他需缴纳消费税的第22章产品时,您必须包括特定的测量输入以确保准确计算。所需的测量因目标国家而异,例如,在向波兰运送葡萄酒时,您需要提供VOLUMEALCOHOL_BY_VOLUME

此表显示了测量字段如何在API请求和CSV上传之间对应:

API枚举值类型CSV标题描述
unitOfMeasureitemUnitOfMeasure!Volumetric unit体积测量的单位
volumevalueVolume体积数量
alcohol_by_volumePERCENTAGEAlcohol by volumeABV百分比

请查看我们的API参考以获得完整的API测量值列表。

通过API或Catalog添加测量

您可以在Landed Cost请求时添加产品测量,或将测量添加到您的Zonos Catalog项目中,以便它们根据产品ID或SKU自动应用。按照下面的变更和步骤:

使用itemCreateWorkflow中的measurements数组直接通过API包括测量。

1mutation {
2 partyCreateWorkflow(
3 input: [
4 { location: { countryCode: US }, type: ORIGIN }
5 {
6 location: {
7 countryCode: PL
8 line1: "ul. Leonarda 87"
9 locality: "Lublin"
10 postalCode: "20-625"
11 }
12 person: {
13 email: "test@gmail.com"
14 firstName: "firstName"
15 lastName: "lastName"
16 phone: "5022303021"
17 companyName: "goProTest"
18 metadata: { key: "key", value: "value" }
19 }
20 type: DESTINATION
21 }
22 ]
23 ) {
24 type
25 id
26 organization
27 }
28 
29 itemCreateWorkflow(
30 input: [
31 {
32 amount: 500
33 currencyCode: USD
34 countryOfOrigin: US
35 quantity: 1
36 description: "Red Wine Sparkling"
37 sku: "15120"
38 measurements: [
39 { type: ALCOHOL_BY_VOLUME, value: 12, unitOfMeasure: PERCENTAGE }
40 { type: VOLUME, value: 750, unitOfMeasure: MILLILITER }
41 ]
42 }
43 ]
44 ) {
45 id
46 name
47 productId
48 sku
49 amount
50 hsCode
51 description
52 }
53 cartonizeWorkflow {
54 id
55 type
56 items {
57 item {
58 id
59 }
60 }
61 }
62 
63 shipmentRatingCreateWorkflow(
64 input: {
65 amount: 15
66 currencyCode: EUR
67 serviceLevelCode: "ups.worldwide_expedited"
68 }
69 ) {
70 id
71 serviceLevelCode
72 amount
73 }
74 landedCostCalculateWorkflow(
75 input: {
76 endUse: NOT_FOR_RESALE
77 tariffRate: ZONOS_PREFERRED
78 calculationMethod: DDP_PREFERRED
79 }
80 ) {
81 id
82 landedCostGuaranteeCode
83 
84 amountSubtotals {
85 taxes
86 items
87 shipping
88 fees
89 duties
90 landedCostTotal
91 }
92 shipmentRating {
93 displayName
94 }
95 method
96 duties {
97 item {
98 hsCode
99 id
100 sku
101 amount
102 }
103 amount
104 currency
105 note
106 description
107 formula
108 }
109 taxes {
110 item {
111 id
112 sku
113 amount
114 hsCode
115 }
116 amount
117 currency
118 description
119 formula
120 type
121 note
122 }
123 fees {
124 item {
125 id
126 sku
127 amount
128 }
129 amount
130 currency
131 description
132 }
133 }
134}
预约演示

这个页面有帮助吗?


获取支持·法律文件·© 2026 Zonos
在此页面: