Skip to content

Commit

Permalink
Permet exoneration mensuelle
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvainipp committed Apr 8, 2024
1 parent 466123f commit 4aab332
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion openfisca_france_data/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,8 +406,9 @@ def create_revenus_remplacement_bruts(individus, period, tax_benefit_system):
csg_deductible_chomage = csg.remplacement.allocations_chomage.deductible
taux_plein = csg_deductible_chomage.taux_plein
taux_reduit = csg_deductible_chomage.taux_reduit
part_annuelle = period.this_year.days/period.days
seuil_chomage_net_exoneration = (
(35 * 52) * smic_horaire_brut[period.start.year]
(35 * 52) * smic_horaire_brut[period.start.year]/part_annuelle
* (
(individus.taux_csg_remplacement == 2) / (1 - taux_reduit)
+ (individus.taux_csg_remplacement >= 3) / (1 - taux_plein)
Expand Down

0 comments on commit 4aab332

Please sign in to comment.