You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For a tax inclusive store, the retail_price as shown in the CSV needs to be the retail_price + retail_tax.
This is important because if you import a CSV file to an inclusive store and do not include the tax, then it will lower the prices of the products!
So in this case, my products cost $1, but my store has 15% GST, so the retail_price needs to include 15cents of tax.
I have a bool called isTaxInclusive.
You can figure out easily if a store is tax inclusive as every entry in /api/products has display_retail_price_tax_inclusive.
For a tax inclusive store, the
retail_price
as shown in the CSV needs to be theretail_price
+retail_tax
.This is important because if you import a CSV file to an inclusive store and do not include the tax, then it will lower the prices of the products!
So in this case, my products cost $1, but my store has 15% GST, so the
retail_price
needs to include 15cents of tax.I have a bool called
isTaxInclusive
.You can figure out easily if a store is tax inclusive as every entry in /api/products has
display_retail_price_tax_inclusive
.The text was updated successfully, but these errors were encountered: