We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, I think I noticed a miscalculation in calculator.js:809:
calculator.js:809
function calcolaDetrazioni(imponibile) { if (imponibile <= 15_000) { return 1_880; } else if (imponibile <= 28_000) { return 1_910 + 1_190 * (28_000 - imponibile) / 13_000; } else if (imponibile <= 50_000) { return 1_910 * (50_000 - imponibile) / (50_000 - 28_000); } else { return 0; } }
Shouldn't the RAL be passed to this function, rather than the taxable income?
Source here: https://www.unipi.it/index.php/ritenute-detrazioni-e-trattenute/item/2145-detrazioni
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I think I noticed a miscalculation in
calculator.js:809
:Shouldn't the RAL be passed to this function, rather than the taxable income?
Source here: https://www.unipi.it/index.php/ritenute-detrazioni-e-trattenute/item/2145-detrazioni
The text was updated successfully, but these errors were encountered: