Skip to content
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:
fixed:
- Georgia itemized deduction calculation.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
input:
tax_unit_itemizes: true
ga_standard_deduction: 8_000
itemized_deductions_less_salt: 9_000
medical_expense_deduction: 9_000
state_code: GA
output:
ga_deductions: 9_000
Expand All @@ -13,7 +13,19 @@
input:
tax_unit_itemizes: false
ga_standard_deduction: 10_000
itemized_deductions_less_salt: 9_000
salt_deduction: 9_000
state_code: GA
output:
ga_deductions: 10_000

- name: Tax unit itemizes with high deduction amounts
period: 2022
input:
tax_unit_itemizes: true
ga_standard_deduction: 10_000
charitable_deduction: 2_000
interest_deduction: 3_000
casualty_loss_deduction: 8_000
state_code: GA
output:
ga_deductions: 13_000
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ def formula(tax_unit, period, parameters):
# 48-7-27(a)(1) states:
# "Either the sum of all itemized nonbusiness deductions used in computing
# such taxpayer’s federal taxable income or..."
# We remove SALT to avoid a circular reference.
itemized = tax_unit("itemized_deductions_less_salt", period)
p = parameters(period).gov.irs.deductions
itemized = add(tax_unit, period, p.itemized_deductions)
return where(itemizes, itemized, sd)