Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alter VA reduced itemized deductions based on changes to TCJA #5280

Merged
merged 3 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: patch
changes:
changed:
- Altered handling of federal params in VA reduced itemized deductions
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@
output:
va_reduced_itemized_deductions: 0

- name: 2027 Virginia limited itemized deduction for a head of household filer
period: 2027
input:
filing_status: HEAD_OF_HOUSEHOLD
adjusted_gross_income: 800_000 # > $306,300
state_and_local_sales_or_income_tax: 60_000
state_code: VA
output:
va_reduced_itemized_deductions: 0

- name: Filer with State and local tax as well as mortgage interest
period: 2021
absolute_error_margin: 2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,31 @@ def formula(tax_unit, period, parameters):
excess_ded = max_(applicable_ded - reducible_ded, 0)
# If 0 - no reduction
# Line 4 - IRS deduction rate of excess

# The federal limitation on itemized deductions does not apply during the TCJA period
# Virginia still applies the limitation
year = period.start.year
if year >= 2018 and year <= 2026:
instant_str = f"2017-01-01"
else:
instant_str = period
p_irs = parameters(instant_str).gov.irs.deductions.itemized.limitation
excess_ded_fraction = excess_ded * p_irs.itemized_deduction_rate

# Here, we use a parameter that mostly keeps in line with the IRS's;
# Virginia follows the IRS, except for TCJA-related policies, hence we
# remove anything TCJA related, but keep everything else coupled to the IRS

# Shortcut to the full parameter, not parameter at instant, for IRS itemized limitations
full_irs_param: Parameter = (
parameters.gov.irs.deductions.itemized.limitation
)

va_itemized_deduction_rate = (
full_irs_param.itemized_deduction_rate.clone()
)

# Eliminate infinite values created by the TCJA's elimination of this param
va_itemized_deduction_rate.values_list = [
entry
for entry in va_itemized_deduction_rate.values_list
if not (entry.value == np.inf or entry.value == -np.inf)
]

excess_ded_fraction = excess_ded * va_itemized_deduction_rate(period)
# Line 5 Federal AGI
federal_agi = tax_unit("adjusted_gross_income", period)
# Line 6 - applicable amount
Expand All @@ -49,7 +65,17 @@ def formula(tax_unit, period, parameters):
# Line 7 - excess
excess = max_(federal_agi - applicable_amount, 0)
# Line 8 - excess times federal item. ded. AGI rate
agi_adjustment = p_irs.agi_rate * excess

# Here again, Virginia follows the IRS, except for TCJA-related policies,
# and we'll need to eliminate infinite values created by TCJA abolishing param
va_agi_rate = full_irs_param.agi_rate.clone()
va_agi_rate.values_list = [
entry
for entry in va_agi_rate.values_list
if not (entry.value == np.inf or entry.value == -np.inf)
]

agi_adjustment = va_agi_rate(period) * excess
# Line 9 - min of line 4 and line 8
va_itm_deds_adjustment = min_(agi_adjustment, excess_ded_fraction)
# Output from Part A (Line 1 - Line 9)
Expand Down
Loading