-
Notifications
You must be signed in to change notification settings - Fork 32
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
Itemized deduction ceiling switch not correctly processed by TaxBrain GUI interface #598
Comments
@hdoupe, Thanks for the bug report in issue #598. |
@martinholmer Yes, it appears that there is an issue with the GUI interface to Taxbrain, but the file upload functionality appears to work correctly. |
@hdoupe said:
So, I had it reversed. You're finding that the GUI interface to TaxBrain has the reform wrong while the file-upload interface to TaxBrain has it right. Is that correct? |
@martinholmer said
Yes, that is correct. My apologies for the confusion. I edited my initial comment in an effort to clear this up. |
Closed via #641 |
I noticed that setting the switches in
Deductions subject to the cap on itemized deduction benefits
to false did not actually cause the parameter,_ID_BenefitCap_Switch
, that was passed totaxcalc
to be false. I ran this reform on a local instance of taxbrain and the value of_ID_BenefitCap_Switch
was passed totaxcalc
as{... u'_ID_BenefitCap_Switch': [[True, True, False, True, 1.0, 1.0, 1.0]], ...}
However, it should have been
{... u'_ID_BenefitCap_Switch': [[1.0, 1.0, 0.0, 1.0, 0.0, 1.0, 1.0]], ...}
or{... u'_ID_BenefitCap_Switch': [[True, True, False, True, False, True, True]], ...}
But when I upload the reform as a file,
ID_BenefitCap_Switch
is passed back as:{...u'_ID_BenefitCap_Switch': [[1.0, 1.0, 0.0, 1.0, 0.0, 1.0, 1.0]], ...}
which is what I expected.
Here is a link to the test app run of the reform file: http://ospc-taxes7.herokuapp.com/taxbrain/1389/
And here are the contents of the reform file:
So, it appears that there is an issue with the GUI interface to Taxbrain, but the file upload functionality appears to work correctly.
@brittainhard @PeterDSteinberg
The text was updated successfully, but these errors were encountered: