-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ajoute l'aide à l’obtention du permis de conduire automobile pour les demandeurs d’emploi #1503
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Je ne trouve pas les conditions codées dans les références indiquées.
2009-07-01: | ||
value: 26.93 | ||
2008-07-01: | ||
value: 26.66 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Je n'ai fait que reprendre le travail de @lauradelmas8. 😅
description: Montant minimum journalier de l'allocation chômage | ||
unit: currency | ||
values: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Une référence serait bienvenue 🙂
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
J'ai ajouté https://www.ipp.eu/baremes-ipp/chomage/allocations_assurance_chomage/alloc_base/
mais je peux comprendre que ça ne soit pas satisfaisant. Cela étant dit, OpenFisca manque vraiment de la possibilité d'associer plusieurs revalorisations à la même référence. Le barème de l'IPP est en cela intéressant.
@@ -0,0 +1,4 @@ | |||
reference: http://www.bo-pole-emploi.org/bulletinsofficiels/instruction-pe-n2011-205-du-9-de.html?type=dossiers/2011/bope-n2011-112-du-9-decembre-201 | |||
montant: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Il s'agit d'un plafond pour couvrir les frais réellement engagés et non d'une aide forfaitaire :
Cette aide financière est plafonnée à 1 200 euros et est destinée à prendre en charge tout ou partie des frais que le demandeur d’emploi expose dans le cadre de l’apprentissage des règles d’acquisition du permis de conduire automobile.
montant: | |
montant_max: |
entity = Individu | ||
label = "Éligibilité financière à l'aide à l’obtention du permis de conduire automobile pour les demandeurs d’emploi" | ||
reference = [ | ||
"Délibération n°2011/13 du 11 avril 2011", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Délibération n°2011/13 du 11 avril 2011", | |
"Délibération Pôle Emploi n°2011/13 du 11 avril 2011", |
definition_period = MONTH | ||
|
||
def formula(individu, period, parameters): | ||
sans_rsa = individu.famille('rsa', period) <= 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pourquoi ne pas simplement utiliser la variable booléenne rsa_eligibilite
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Car cette variable ne vérifie pas tous les critères pour percevoir effectivement le RSA. Notamment les conditions de ressources.
|
||
def formula(individu, period, parameters): | ||
sans_rsa = individu.famille('rsa', period) <= 0 | ||
sans_aah = individu('aah', period) <= 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pourquoi ne pas simplement utiliser la variable booléenne aah_eligible
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Même remarque, cette variable ne vérifie pas tous les critères pour percevoir effectivement l'AAH. Notamment les conditions de ressources.
plafond_chomage = allocation_journaliere_minimum * 31 | ||
chomage_minimum = individu('chomage_brut', period) <= plafond_chomage | ||
|
||
return sans_rsa * sans_aah * chomage_minimum |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Je ne trouve pas ces conditions dans la référence indiquée.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Merci pour l'ajout des références ! 🙂
Il me semblerait également pertinent de documenter la durée minimale d'inscription (il faut être inscrit à Pôle Emploi depuis plus de 6 mois), même si elle n'est pas modélisée, car il s'agit d'une raison importante de donner des faux positifs.
openfisca_france/model/prestations/aide_permis_demandeur_emploi.py
Outdated
Show resolved
Hide resolved
La condition que tu soulignes a une dérogation. C'est pourquoi, j'ai préféré ne pas implémenter cette logique dans le moteur et informer les personnes via une condition textuelle.
1.1.1.2 - Dérogation de Instruction PE n°2011-205 du 9 décembre 2011 – Mise à jour Est-ce qu'avec ces éléments là ta demande de changement est-elle levée ? |
Ma demande de changement ne concernait que le chômage net au lieu de brut, l'autre était une suggestion :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Non testé localement.
… demandeurs d’emploi
…i.py Co-authored-by: Matti Schneider <matti@mes-aides.org>
29f3e86
to
3826c75
Compare
prestations/aide_permis_demandeur_emploi.py
.Cette PR repose sur #1502
Ces changements (effacez les lignes ne correspondant pas à votre cas) :
Quelques conseils à prendre en compte :
setup.py
.CHANGELOG.md
.Et surtout, n'hésitez pas à demander de l'aide ! :)