[IMP] l10n_us_hr_payroll: LA Louisiana simplify SIT calculation

This commit is contained in:
yur@hibou.io
2022-01-13 15:16:20 -06:00
parent 07f90b4ced
commit ff7be99b08

View File

@@ -32,14 +32,7 @@ def la_louisiana_state_income_withholding(payslip, categories, worked_days, inpu
annual_wage = wage * pay_periods
effect_cap = 0.0
multiplier = 0.0
if filing_status == 'single':
effect_cap = 12500.00
multiplier = 1.60
elif filing_status == 'married':
effect_cap = 25000.00
multiplier = 1.65
effect_cap, multiplier = tax_table[0]
after_credits_under = (2.100 / 100) * (((personal_exemptions * exemption_rate) +
(dependent_exemptions * dependent_rate)) / pay_periods)