|
Method
|
Program
|
Explanation
|
|
01
|
txmeth01.p
|
This generic method supports most taxes.
Tax Amount = Tax Rate * Item Amount
Note: For reverse-calculated taxes, Tax Amount = Tax Rate * [Item Amount / (1+Tax Rate)]
Taxable Base = Item Amount * Tax Base Percent
If Taxable Base < Min. Taxable, Tax Amount = Min. Taxable
If Taxable Base > Max. Taxable, Tax Amount = Max. Taxable
Recoverable Amount = Tax Amount * Recoverable Percent
|
|
02
|
txmeth02.p
|
Same as method 01 except that it supports luxury taxes and capped taxes that are assessed only on specific taxable base amounts.
If Taxable Base < Min. Taxable, Tax Amount = 0
If Taxable Base > Max. Taxable, Tax Amount = 0
|
|
03
|
txmeth03.p
|
Indicates you are importing tax amounts from an external system and do not want to recalculate them.
|
|
11
|
txmeth11.p
|
Same as method 01 but has a regressive calculation for reverse-calculated taxes.
Tax Amount = Tax Rate * Item Amount
|
|
20
|
txmeth20.p
|
Indicates that Quantum, through the Sales and Use Tax API, calculates taxes for each line item.
|