7.1 - Taxability of Shipping Charges
Because we treat freight/shipping just like any other line item on the document, you can associate a tax code to your freight/shipping line item. The taxability of freight/shipping will vary from jurisdiction to jurisdiction. Depending on how you ship your goods, via USPS, FedEx or UPS may have different taxability than if you ship via your own company truck. We have quite a few different freight tax codes to choose from, make sure that you select a code that is representative of how you ship your goods. Take a look at our tax code lookup utility.
Address Types
By now, you’ve become familiar with SingleLocation
, ShipTo
, and ShipFrom
address types. Let’s recap what each address type means and introduce two additional address types that are available for use within AvaTax, PointOfOrderOrigin
and PointOfOrderAcceptance
:
SingleLocation
- Origin and Destination in which an item was purchased and accepted.ShipFrom
- Origin location from where the item is being shippedShipTo
- Destination location where the item is being deliveredPointOfOrderOrigin
- Origin location from which the order was placedPointOfOrderAcceptance
- Destination location from which the seller accepted the order
For most users, including ShipFrom
and ShipTo
in your transactions will be sufficient. You’ll want to consider what will benefit your needs and your customers’ needs and address them as needed.
Putting It All Together
Now, let’s take a look at a simple transaction with shipping charges included. We will be using the taxability code FR020100
for our shipping charge. This code is defined as “Shipping via common carrier FOB destination”.
Test Case - 7.1.1
Setup
- You are shipping an item from Washington to Florida.
- In your connector, create the following transaction:
- Document Type: SalesInvoice
- Document Code: Chapter-7-Test-1
- Company Code: DEVGUIDE
- Document Date: 2017-06-15
- Customer Code: TESTCUSTOMER
- Addresses:
- ShipFrom
- 100 Ravine Lane NE, Bainbridge Island, WA 98110
- ShipTo
- 3500 Pan American Dr., Miami FL 33133
- Line #1:
- Quantity: 10
- Amount 100
- TaxCode P0000000
- Item Code: Widgets
- Description: Taxable Gizmo
- Line #2:
- Quantity: 1
- Amount 5
- TaxCode FR020100
- Item Code: Shipping
- Calculate tax for your transaction using AvaTax.
Assertions
- The totalTax should be $7.35.
- The tax amount for Shipping should be $0.35.
{
"type": "SalesInvoice",
"code": "Chapter-7-Test-1",
"companyCode": "DEVGUIDE",
"date": "2017-06-15",
"customerCode": "TESTCUSTOMER",
"addresses": {
"shipFrom": {
"line1": "100 Ravine Lane NE",
"city": "Bainbridge Island",
"region": "WA",
"country": "US",
"postalCode": "98110"
},
"shipTo": {
"line1": "3500 Pan American Dr.",
"city": "Miami",
"region": "FL",
"country": "US",
"postalCode": "33133"
}
},
"lines": [
{
"number": "1",
"quantity": 10,
"amount": 100,
"taxCode": "P0000000",
"itemCode": "Widgets",
"description": "Taxable Gizmo"
},
{
"number": "2",
"quantity": 1,
"amount": 5,
"taxCode": "FR020100",
"itemCode": "Shipping"
}
]
}
So you can see that adding a freight charge to a transaction is no different from adding another item to the transaction. One item to consider is how you will associate the freight tax code with the freight charge within your application. For certified integrations, the merchant must be able to update this tax code, depending on how they ship their goods.
Now let’s take a look at the transaction when we ship an item that is non-taxable in Florida:
Test Case - 7.1.2
Setup
- You are shipping an item from Washington to Florida.
- In your connector, create the following transaction:
- Document Type: SalesInvoice
- Document Code: Chapter-7-Test-2
- Document Date: 2017-06-15
- Customer Code: TESTCUSTOMER
- Addresses:
- ShipFrom
- 100 Ravine Lane NE, Bainbridge Island, WA 98110
- ShipTo
- 3500 Pan American Dr., Miami FL 33133
- Line #1:
- Quantity 10
- Amount 100
- TaxCode NT
- Item Code Widgets
- Description "Non-Taxable Gizmo"
- Line #2:
- Quantity 1
- Amount 5
- TaxCode FR020100
- Item Code Shipping
- Calculate tax for your transaction using AvaTax.
Assertions
- The totalTax amount for the transaction should be $0
- The tax of the shipping line item followed the taxability of the items being shipped
{
"type": "SalesInvoice",
"code": "Chapter-7-Test-2",
"companyCode": "DEVGUIDE",
"date": "2017-06-15",
"customerCode": "TESTCUSTOMER",
"addresses": {
"shipFrom": {
"line1": "18300 Von Karman Ave",
"city": "Irvine",
"region": "CA",
"country": "US",
"postalCode": "92612"
},
"shipTo": {
"line1": "3500 Pan American Dr.",
"city": "Miami",
"region": "FL",
"country": "US",
"postalCode": "33133"
}
},
"lines": [
{
"number": "1",
"quantity": 10,
"amount": 100,
"taxCode": "NT",
"itemCode": "Widgets",
"description": "Non-Taxable Gizmo"
},
{
"number": "2",
"quantity": 1,
"amount": 5,
"taxCode": "FR020100",
"itemCode": "Shipping"
}
]
}
In the previous example the freight was taxable, however this time the freight was exempt. This is because in this particular jurisdiction the taxability of the freight will follow the taxability of the items on the invoice. So, if the items being shipped are exempt, so is the freight.
Now, let’s take a look a the behavior when we have more than one item being shipped and the taxability of the items is different:
Test Case - 7.1.3
Setup
- You are shipping an item from Washington to Florida.
- In your connector, create the following transaction:
- Document Type: SalesInvoice
- Document Code: Chapter-7-Test-3
- Company Code: DEVGUIDE
- Document Date: 2017-06-15
- Customer Code: TESTCUSTOMER
- Addresses:
- ShipFrom
- 100 Ravine Lane NE, Bainbridge Island, WA 98110
- ShipTo
- 3500 Pan American Dr., Miami FL 33133
- Line #1:
- Quantity
- Amount: 100
- TaxCode: P0000000
- Item Code: Widgets
- Description: Taxable Gizmo
- Line #2:
- Quantity: 10
- Amount: 100
- TaxCode: NT
- Item Code: Widgets
- Description: Non-Taxable Gizmo
- Line #3:
- Quantity: 1
- Amount: 5
- Tax Code: FR020100
- Item Code: Shipping
- Calculate tax for your transaction using AvaTax.
Assertions
- The totalTax amount should be $7.18.
- Line 2 should have a tax amount of $0.00.
{
"type": "SalesInvoice",
"code": "Chapter-7-Test-3",
"companyCode": "DEVGUIDE",
"date": "2017-06-15",
"customerCode": "TESTCUSTOMER",
"addresses": {
"shipFrom": {
"line1": "100 Ravine Lane NE",
"city": "Bainbridge Island",
"region": "WA",
"country": "US",
"postalCode": "98110"
},
"shipTo": {
"line1": "3500 Pan American Dr.",
"city": "Miami",
"region": "FL",
"country": "US",
"postalCode": "33133"
}
},
"lines": [
{
"number": "1",
"quantity": 10,
"amount": 100,
"taxCode": "P0000000",
"itemCode": "Widgets",
"description": "Taxable Gizmo"
},
{
"number": "2",
"quantity": 10,
"amount": 100,
"taxCode": "NT",
"itemCode": "Widgets",
"description": "Non-Taxable Gizmo"
},
{
"number": "3",
"quantity": 1,
"amount": 5,
"taxCode": "FR020100",
"itemCode": "Shipping"
}
]
}