From e4c02eabe3343655a8b7a87411a2fac0d4bda993 Mon Sep 17 00:00:00 2001 From: jdebacker Date: Tue, 16 Jan 2024 14:51:36 -0500 Subject: [PATCH] modify calcfunc? --- taxcalc/calcfunctions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/taxcalc/calcfunctions.py b/taxcalc/calcfunctions.py index edd7f7376..968cb7842 100644 --- a/taxcalc/calcfunctions.py +++ b/taxcalc/calcfunctions.py @@ -3310,7 +3310,7 @@ def IITAX(c59660, c11070, c10960, personal_refundable_credit, ctc_new, rptc, """ eitc = c59660 if CTC_refundable: - ctc_refund = c07220 + ctc_refund = c07220 else: ctc_refund = 0. if ODC_refundable: @@ -3318,7 +3318,7 @@ def IITAX(c59660, c11070, c10960, personal_refundable_credit, ctc_new, rptc, else: odc_refund = 0. refund = (eitc + c11070 + c10960 + CDCC_refund + recovery_rebate_credit + - personal_refundable_credit + ctc_new + rptc + ctc_refund + odc_refund) + personal_refundable_credit + ctc_new + rptc + ctc_refund + odc_refund) iitax = c09200 - refund combined = iitax + payrolltax return (eitc, refund, iitax, combined)