diff --git a/openfisca_france_data/common.py b/openfisca_france_data/common.py index 2507df29..219db8d5 100644 --- a/openfisca_france_data/common.py +++ b/openfisca_france_data/common.py @@ -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)