Skip to content

Commit

Permalink
Refacto condition handicap - aide 100 repas gratuits crous hdf & supp…
Browse files Browse the repository at this point in the history
…r. comments superflus
  • Loading branch information
Shamzic committed Sep 25, 2023
1 parent 2accecd commit 7811c35
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def formula(individu, period, parameters):

eligibilite_geographique = (region == TypesCodeInseeRegion.hauts_de_france)

eligibilite_age = not_(handicap) * (age <= params.age.maximum) + handicap
eligibilite_age = (age <= params.age.maximum) + handicap

eligibilite_scolarite = (individu('scolarite', period) == TypesScolarite.enseignement_superieur) # + (individu('scolarite', period) == TypesScolarite.formation_sanitaire_ou_sociale) @Todo : Ajouter la variable 'formation_sanitaire_ou_sociale' sur sur openfisca-france ?

Expand Down

0 comments on commit 7811c35

Please sign in to comment.