-
Notifications
You must be signed in to change notification settings - Fork 101
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
Revalorisation de l'AAH au 1er avril 2018 #993
Conversation
6505365
to
150f4fb
Compare
CHANGELOG.md
Outdated
- `parameters/minima_sociaux/aah` | ||
- `parameters/minima_sociaux/caah` | ||
* Détails : | ||
- - Revalorise les plafonds de ressources pour bénéficier des aides CMU-c et ACS en date du 01/04/2018. |
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.
Revalorise le montant de l'AAH au 01/04/2018, non ?
@@ -216,6 +216,12 @@ def formula(individu, period, parameters): | |||
1 + en_couple + law.minima_sociaux.aah.tx_plaf_supp * af_nbenf) | |||
montant_aah = max_(plaf_ress_aah - aah_base_ressources, 0) / 12 | |||
|
|||
# TODO : appliquer un montant minimal de l'aah dans certains cas (vérifier depuis quand ce minimum existe) | |||
# Utiliser le montant minimal dans les cas : |
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.
C'est super que vous ayez cette visibilité sur les limitations des implémentations actuelles mais une issue devrait être créée plutôt qu'un commentaire TODO dans le code.
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 créé une issue dans ce sens #999 , est-ce que je peux également laissé ce commentaire ou tu pense qu'il vaudrait mieux le retirer ?
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 faudrait mieux le retirer.
@@ -0,0 +1,6 @@ | |||
description: Taux permettant de calculer le montant mensuel mininal de l'allocation adulte handicapé (après 60 jours d'hospitalisation, d'accueil en MAS, d'incarcération) |
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.
Ce nouveau paramètre ne semble pas être utilisé dans la législation, peut-on le sortir de cette PR tant que c'est le cas ?
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.
@guillett ce paramètre est lié au commentaire précédent, je vais le retirer de la PR
@@ -38,3 +38,5 @@ values: | |||
value: 987.77 | |||
2017-04-01: | |||
value: 990.2 | |||
2018-04-01: | |||
value: 998.31 |
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.
Ce montant est normalement AAH + 179,31 €. Après revalorisation l'AAH vaut 819 € (soit +9) mais ce montant n'est pas revalorisé de 9 €.
Le montant mensuel de la garantie de ressources des personnes handicapées mentionnée à l'article L. 821-1-1 est égal à la somme du montant mensuel de l'allocation aux adultes handicapés et de celui du complément de ressources mentionné au même article. Le montant mensuel du complément de ressources est fixé à 179, 31 €.
dans Code de la sécurité sociale - Article D821-3.
Ce qui est surprenant c'est que service-public.fr affiche le même montant de 998,31 €.
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.
Après vérification dans les parametres, l'AAH est passée de :
2017-04-01: value: 810.89
à
2018-04-01: value: 819
Ce qui donne 819 - 810.89 = 8.11€ d'augmentation.
En reprenant les valeurs de garantie_ressources
on retrouve cette même valeur :
2017-04-01: value: 990.2
2018-04-01: value: 998.31
998.31 - 990.2 = 8.11€
On est bien raccord sur les deux valeurs.
tests/formulas/aah.yaml
Outdated
@@ -147,3 +147,289 @@ | |||
2015-11: [187, 0] | |||
aah: | |||
2015-11: [187, 0] | |||
|
|||
# msa_reval_aah_01_04_2018 : Cas 1 passant |
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.
Ce texte si il a de la valeur, peut-il être ajouté au nom du test ?
tests/formulas/aah.yaml
Outdated
aah : [158.31, 0] | ||
|
||
# msa_reval_aah_01_04_2018 : Cas 3 passant | ||
# TODO : Vérifier le résultat |
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, il est préférable de créer des issues.
150f4fb
to
f9d4763
Compare
@@ -216,6 +216,12 @@ def formula(individu, period, parameters): | |||
1 + en_couple + law.minima_sociaux.aah.tx_plaf_supp * af_nbenf) | |||
montant_aah = max_(plaf_ress_aah - aah_base_ressources, 0) / 12 | |||
|
|||
# TODO : appliquer un montant minimal de l'aah dans certains cas (vérifier depuis quand ce minimum existe) | |||
# Utiliser le montant minimal dans les cas : |
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 faudrait mieux le retirer.
tests/formulas/aah.yaml
Outdated
output_variables: | ||
aah: 398.81 | ||
|
||
|
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.
Un saut de ligne en trop.
CHANGELOG.md
Outdated
@@ -1,6 +1,16 @@ | |||
# Changelog | |||
|
|||
### 21.10.3 [#975](https://github.com/openfisca/openfisca-france/pull/985) | |||
## 21.10.7 [#993](https://github.com/openfisca/openfisca-france/pull/993) |
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 faudra revoir le numéro de version si cette PR est mergée avant les autres (ce qui va être très probablement le cas).
tests/formulas/aah.yaml
Outdated
output_variables: | ||
aah: [0, 0, 0, 0] | ||
|
||
- name: "Revalorisation 01-04-2018, Cas Non Passant 1 : AAH KO : personne seule de 50 ans avec un taux d'incapacité entre 50% et 79% et un revenu de 12000€" |
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.
KO ne me parait pas assez explicite. KO car non éligible ou bien éligible mais le moteur de calcul de reflète pas correctement la législation ?
Si le test ne passe pas, il faudrait le supprimer de la PR et le garder au chaud dans une issue.
Sinon voilà une proposition de reformulation
Revalorisation 01-04-2018, personne seule non éligibile à l'AHH avec un taux d'incapacité entre 50% et 79% et un revenu de 12000€
f9d4763
to
4ad7907
Compare
4ad7907
to
97484b6
Compare
parameters/minima_sociaux/aah
parameters/minima_sociaux/caah
Ces changements :