-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2526 from benjaminwil/tax_calculator_documentation
Add a stub article that summarizes Solidus's built-in tax calculator
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Tax calculator | ||
|
||
Solidus comes with a tax calculator that is used to calculate both sales tax | ||
(United States-style taxes) and value-added tax (VAT): | ||
[`Spree::Calculator::DefaultTax`][default-tax-calculator]. Typically, this | ||
calculator should be the only tax calculator required by your store. | ||
|
||
Using this calculator, all tax rates are represented as a decimal. So, a tax | ||
rate of 5% should be represented as `0.05`. | ||
|
||
Taxes can apply to line items, shipments, or an entire order. | ||
|
||
The tax calculator uses its calculable – a `Spree::TaxRate` – to calculate tax | ||
totals. | ||
|
||
For more comprehensive documentation about taxes in Solidus, see the | ||
[Taxation][taxation] documentation. | ||
|
||
If your store's tax requirements are more complicated, you may want to create a | ||
[custom tax calculator][custom-tax-calculator] or use an extension like | ||
[`solidus_tax_cloud`][solidus-tax-cloud]. | ||
|
||
[custom-tax-calculator]: ../taxation/custom-tax-calculators.md | ||
[default-tax-calculator]: https://github.com/solidusio/solidus/blob/master/core/app/models/spree/calculator/default_tax.rb | ||
[solidus-tax-cloud]: https://github.com/solidusio-contrib/solidus_tax_cloud | ||
[taxation]: ../taxation/overview.md | ||
|