Skip to content
Open
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
1 change: 1 addition & 0 deletions changelog.d/cdcc-fix-la.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix LA non-refundable CDCC to use cdcc (claimed federal credit) instead of cdcc_potential, per RS 47:297.4(B).
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ def formula(tax_unit, period, parameters):
p = parameters(
period
).gov.states.la.tax.income.credits.cdcc.non_refundable
# Louisiana matches the potential federal credit
# Louisiana non-refundable tier uses the claimed federal credit (cdcc),
# per RS 47:297.4(B): "...claimed on the resident individual's federal
# tax return." This means the actual credit after the IRC 26 tax
# liability cap, not cdcc_potential (which ignores that cap).
us_cdcc = tax_unit("cdcc", period)
us_agi = tax_unit("adjusted_gross_income", period)
match = p.match.calc(us_agi, right=True)
Expand Down