Module: TaxComputation
- Defined in:
- lib/tax_computation.rb,
lib/tax_computation/version.rb
Constant Summary collapse
- RANGES_2k23_24 =
{600000.0...1200000.0 => {percentage: 2.5, fixed_amount: 0, low: 600000}, 1200000.0...2400000.0 => {percentage: 12.5, fixed_amount: 15000, low: 1200000}, 2400000.0...3600000.0 => {percentage: 22.5, fixed_amount: 165000, low: 2400000}, 3600000.0...6000000.0 => {percentage: 27.5, fixed_amount: 435000, low: 3600000}, 6000000.0...Float::INFINITY => {percentage: 35, fixed_amount: 1095000, low: 6000000} }
- VERSION =
"2.0.0"