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!體積單位用於體積測量的單位
volumevalue體積體積數量
alcohol_by_volumePERCENTAGE酒精度ABV 百分比

在此處查看我們的 API 參考以獲取完整的 API 測量值清單。

透過 API 或 Catalog 新增測量值

您可以在 Landed Cost 請求時新增產品測量值,或將測量值新增至您的 Zonos Catalog 項目,以便它們根據產品 ID 或 SKU 自動套用。請遵循以下 mutation 和步驟:

透過使用 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
在此頁面: