Skip to content

Commit

Permalink
correction base csg chomage
Browse files Browse the repository at this point in the history
  • Loading branch information
paul committed Feb 21, 2023
1 parent 768cb27 commit 8090d51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openfisca_france_data/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ def create_revenus_remplacement_bruts(individus, period, tax_benefit_system):
base_csg_chomage = np.where(
individus.chomage_imposable <= threshold,
individus.chomage_imposable * (1 - taux_abattement_csg_chomage) / (1 - (taux_csg_chomage * (1 - taux_abattement_csg_chomage))),
(individus.chomage_imposable - seuil_abattement_csg_chomage * taux_abattement_csg_chomage) / (1 - taux_csg_chomage)
(individus.chomage_imposable - seuil_abattement_csg_chomage * taux_abattement_csg_chomage * pss) / (1 - taux_csg_chomage)
)
individus['chomage_brut'] = np.where(
exonere_csg_chomage,
Expand Down

0 comments on commit 8090d51

Please sign in to comment.