Skip to content

Commit

Permalink
Inclut les indemnités de chômage partiel au chômage brut
Browse files Browse the repository at this point in the history
  • Loading branch information
sandcha committed May 11, 2021
1 parent b16c03d commit 5332eec
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion openfisca_france/model/revenus/remplacement/chomage.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ class chomage_brut(Variable):
calculate_output = calculate_output_add

def formula(individu, period):
return individu("allocation_retour_emploi", period)
allocation_retour_emploi = individu("allocation_retour_emploi", period)
indemnites_chomage_partiel = individu("indemnites_chomage_partiel", period)
return allocation_retour_emploi + indemnites_chomage_partiel


class indemnites_chomage_partiel(Variable):
Expand Down

0 comments on commit 5332eec

Please sign in to comment.