Skip to content

Commit

Permalink
Simplifie la formule de l'impôt sur le revenu net suite à l'abrogatio…
Browse files Browse the repository at this point in the history
…n de la "réfaction foyers modestes" (#2416)
  • Loading branch information
b-michaud authored Jan 13, 2025
2 parents e73bfa9 + aeaa8be commit 05e42e8
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

### 169.14.6 [2416](https://github.com/openfisca/openfisca-france/pull/2416)

* Changement mineur.
* Périodes concernées : à partir du 01/01/2020.
* Zones impactées : `openfisca_france/model/prelevements_obligatoires/impot_revenu/ir.py`.
* Détails :
- Enlève de la formule de l'IR net la réfaction foyers modestes (reduction_ss_condition_revenus) à partir de son abrogation en 2020

### 169.14.5 [2415](https://github.com/openfisca/openfisca-france/pull/2415)

* Évolution du système socio-fiscal.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1724,6 +1724,15 @@ def formula(foyer_fiscal, period, parameters):

return around(max_(0, ir_plaf_qf - decote - reduction_ss_condition_revenus))

def formula_2020_01_01(foyer_fiscal, period, parameters):
'''
Impôt net avant réductions suite à l'abrogation de la "réfaction foyers modestes"
'''
ir_plaf_qf = foyer_fiscal('ir_plaf_qf', period)
decote_gain_fiscal = foyer_fiscal('decote_gain_fiscal', period)

return around(ir_plaf_qf - decote_gain_fiscal)


class iaidrdi(Variable):
value_type = float
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "OpenFisca-France"
version = "169.14.5"
version = "169.14.6"
description = "OpenFisca Rules as Code model for France."
readme = "README.md"
keywords = ["microsimulation", "tax", "benefit", "rac", "rules-as-code", "france"]
Expand Down

0 comments on commit 05e42e8

Please sign in to comment.