Stockeo Help
  • What is Stockeo?
  • Update inventory from a Google Sheet
  • Update inventory from an XML feed
  • Create products from a JSON feed
  • Data Mapping
    • Format
      • CSV
      • JSON
      • XML
    • SKU
    • Price calculation
    • Quantity settings
    • Quantity format
    • Image URL settings
    • Variants
    • Metafields
    • Title
    • Description
    • Translations
    • Continue selling when out of stock
    • Charge tax
  • Filters
  • TROUBLESHOOTING
    • Invalid Closing Quote
    • Invalid Record Length
Powered by GitBook
On this page
  1. Data Mapping

Charge tax

PreviousContinue selling when out of stockNextFilters

Last updated 3 months ago

Stockeo allows you to decide whether to charge tax on a product based on data from the product feed.

In the Data Mapping section, open the Add field dropdown, and select "Charge tax". Then specify the field in your product feed that determines whether a product is taxable.

The "Charge tax" field accepts the below values.

Positive values:

  • yes, Yes, YES

  • true, True, TRUE

  • 1

Negative values:

  • no, No, NO

  • false, False, FALSE

  • 0

You can use a Liquid expression to convert unsupported values, or to specify a fixed value.

For example, when your feed contains a VAT_Taxable field with one of the two values Y, and N:

{%- case VAT_Taxable -%}
{%- when "Y" -%} yes
{%- when "N" -%} no
{%- else -%} yes
{%- endcase -%}

To specify a fixed value:

{{ "yes" }}
Stockeo - Charge tax field