From f750cf46f12d21260a4728035d10ef4a5ab5027e Mon Sep 17 00:00:00 2001 From: Martin Billard Date: Tue, 7 May 2024 10:34:44 +0200 Subject: [PATCH 1/9] =?UTF-8?q?Revalorisation=20allocation=20suppl=C3=A9me?= =?UTF-8?q?ntaire=20d'invalidit=C3=A9,=20plafond=20de=20ressource=20(asi)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../invalidite/asi/plafond_ressource_couple.yaml | 5 +++++ .../invalidite/asi/plafond_ressource_seul.yaml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/openfisca_france/parameters/prestations_sociales/prestations_etat_de_sante/invalidite/asi/plafond_ressource_couple.yaml b/openfisca_france/parameters/prestations_sociales/prestations_etat_de_sante/invalidite/asi/plafond_ressource_couple.yaml index 514035f304..3132bcf727 100644 --- a/openfisca_france/parameters/prestations_sociales/prestations_etat_de_sante/invalidite/asi/plafond_ressource_couple.yaml +++ b/openfisca_france/parameters/prestations_sociales/prestations_etat_de_sante/invalidite/asi/plafond_ressource_couple.yaml @@ -38,6 +38,8 @@ values: value: 17786.49 2023-04-01: value: 18060.13 + 2024-04-01: + value: 18890.89 metadata: short_label: Plafond de ressource pour un couple last_value_still_valid_on: "2022-09-28" @@ -117,6 +119,9 @@ metadata: 2023-04-01: title: ​Circulaire Cnav 2023/9 du 11/04/2023 href: https://legislation.lassuranceretraite.fr/Pdf/circulaire_cnav_2023_09_11042023.pdf + 2024-04-01: + title: Circulaire Cnav 2024/13 du 04/04/2024 + href: https://legislation.lassuranceretraite.fr/Pdf/circulaire_cnav_2024_13_04042024.pdf official_journal_date: 2006-01-01: "2007-01-13" 2008-01-01: "2007-12-28" diff --git a/openfisca_france/parameters/prestations_sociales/prestations_etat_de_sante/invalidite/asi/plafond_ressource_seul.yaml b/openfisca_france/parameters/prestations_sociales/prestations_etat_de_sante/invalidite/asi/plafond_ressource_seul.yaml index 923c4476c9..dcc5f9f589 100644 --- a/openfisca_france/parameters/prestations_sociales/prestations_etat_de_sante/invalidite/asi/plafond_ressource_seul.yaml +++ b/openfisca_france/parameters/prestations_sociales/prestations_etat_de_sante/invalidite/asi/plafond_ressource_seul.yaml @@ -38,6 +38,8 @@ values: value: 10163.71 2023-04-01: value: 10320.07 + 2024-04-01: + value: 10794.79 metadata: short_label: Plafond de ressources pour une personne seule last_value_still_valid_on: "2023-07-05" @@ -115,6 +117,9 @@ metadata: 2023-04-01: title: ​Circulaire Cnav 2023/9 du 11/04/2023 href: https://legislation.lassuranceretraite.fr/Pdf/circulaire_cnav_2023_09_11042023.pdf + 2024-04-01: + - title: Circulaire Cnav 2024/13 du 04/04/2024 + href: https://legislation.lassuranceretraite.fr/Pdf/circulaire_cnav_2024_13_04042024.pdf official_journal_date: 2006-01-01: "2007-01-13" 2008-01-01: "2007-12-28" From 5072544325117e1fbea411c74bc6827fde2820ed Mon Sep 17 00:00:00 2001 From: Martin Billard Date: Fri, 10 May 2024 10:52:20 +0200 Subject: [PATCH 2/9] =?UTF-8?q?Ajout=20test=20suite=20=C3=A0=20la=20revalo?= =?UTF-8?q?risation=20allocation=20suppl=C3=A9mentaire=20d'invalidit=C3=A9?= =?UTF-8?q?,=20plafond=20de=20ressource=20(asi)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/formulas/asi.yaml | 45 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/tests/formulas/asi.yaml b/tests/formulas/asi.yaml index 70f8886bb7..db4f31f147 100644 --- a/tests/formulas/asi.yaml +++ b/tests/formulas/asi.yaml @@ -140,3 +140,48 @@ output: asi: [200, 200] #Source: https://www.ameli.fr/assure/remboursements/pensions-allocations-rentes/invalidite + +- name: Cas test de l'ASI après reval 2024 - Célibataire (8) + period: 2024-01 + absolute_error_margin: 1 + input: + age: 35 + asi_aspa_base_ressources_individu: 500 + asi_eligibilite: true + output: + asi: 360 + +- name: Cas test de l'ASI après reval 2024 - Couple marié (9) + period: 2024-10 + absolute_error_margin: 1 + input: + famille: + parents: [parent1, parent2] + maries: true + individus: + parent1: + age: 35 + asi_aspa_base_ressources_individu: 1000 + asi_eligibilite: true + activite: retraite + parent2: + age: 35 + asi_aspa_base_ressources_individu: 0 + asi_eligibilite: true + activite: retraite + foyers_fiscaux: + foyer_fiscal_0: + declarants: + - parent1 + foyer_fiscal_1: + declarants: + - parent2 + menages: + menage_0: + personne_de_reference: + - parent1 + menage_1: + personne_de_reference: + - parent2 + output: + asi: [287.07, 287.07] \ No newline at end of file From a9e18c4d70928aaac81b3310a6f1fbdf48e3bd3a Mon Sep 17 00:00:00 2001 From: Martin Billard Date: Mon, 13 May 2024 11:50:09 +0200 Subject: [PATCH 3/9] =?UTF-8?q?Revalorisation=20allocation=20de=20solidari?= =?UTF-8?q?t=C3=A9=20sp=C3=A9cifique,=20montant=20de=20base=20(asi)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ass/montant_plein.yaml | 5 + .../ass/montant_plein_mayotte.yaml | 6 + tests/formulas/ass_04_2024.yaml | 179 ++++++++++++++++++ tests/formulas/ass_mayotte.yaml | 19 ++ 4 files changed, 209 insertions(+) create mode 100644 tests/formulas/ass_04_2024.yaml diff --git a/openfisca_france/parameters/chomage/allocations_assurance_chomage/ass/montant_plein.yaml b/openfisca_france/parameters/chomage/allocations_assurance_chomage/ass/montant_plein.yaml index 54aef2f00f..b993740d15 100644 --- a/openfisca_france/parameters/chomage/allocations_assurance_chomage/ass/montant_plein.yaml +++ b/openfisca_france/parameters/chomage/allocations_assurance_chomage/ass/montant_plein.yaml @@ -78,6 +78,8 @@ values: value: 17.21 2022-07-01: value: 17.9 + 2024-04-01: + value: 19.01 metadata: short_label: Montant journalier (taux plein) label_en: Special UI scheme @@ -204,6 +206,9 @@ metadata: 2022-07-01: title: Loi n° 2022-1158 du 16/08/2022, Article 9 href: https://www.legifrance.gouv.fr/jorf/article_jo/JORFARTI000046186749 + 2024-04-01: + title: Décret n° 2024-341 du 12/04/2024 + href: https://www.legifrance.gouv.fr/loda/id/JORFTEXT000049410767 official_journal_date: 1984-04-01: 1984-06-05; 1984-11-23 1984-10-01: "1984-12-27" diff --git a/openfisca_france/parameters/chomage/allocations_assurance_chomage/ass/montant_plein_mayotte.yaml b/openfisca_france/parameters/chomage/allocations_assurance_chomage/ass/montant_plein_mayotte.yaml index 8d51ef2abd..759fb3c03b 100644 --- a/openfisca_france/parameters/chomage/allocations_assurance_chomage/ass/montant_plein_mayotte.yaml +++ b/openfisca_france/parameters/chomage/allocations_assurance_chomage/ass/montant_plein_mayotte.yaml @@ -42,8 +42,11 @@ values: value: 8.61 2022-07-01: value: 8.95 + 2023-04-01: + value: 9.09 metadata: short_label: Montant plein Mayotte + last_value_still_valid_on: "2024-03-12" label_en: Special UI scheme unit: currency reference: @@ -70,4 +73,7 @@ metadata: 2022-07-01: title: Loi n° 2022-1158 du 16/08/2022, Article 9 href: https://www.legifrance.gouv.fr/jorf/article_jo/JORFARTI000046186749 + 2023-04-01: + title: Décret n° 2023-301 du 22/04/2023, Article 1 + href: https://www.legifrance.gouv.fr/jorf/article_jo/JORFARTI000047478026 documentation: Le prestations.minima_sociaux.ass.montant_plein de la métropole est pris par défaut lorsque la valeur spécifique à Mayotte est non répertoriée. diff --git a/tests/formulas/ass_04_2024.yaml b/tests/formulas/ass_04_2024.yaml new file mode 100644 index 0000000000..10ca154715 --- /dev/null +++ b/tests/formulas/ass_04_2024.yaml @@ -0,0 +1,179 @@ +- name: Allocation de solidarité spécifique - Cas N°1 + description: Montant ASS pour personne seule sans ressources + period: 2024-04 + absolute_error_margin: 0.02 + input: + famille: + parents: [parent1] + ass_base_ressources: 0 * 12 + foyer_fiscal: + declarants: [parent1] + menage: + personne_de_reference: parent1 + individus: + parent1: + ass_precondition_remplie: true + activite: chomeur + chomage_net: 0 + aah: 0 + output: + ass: 570.3 + +- name: Allocation de solidarité spécifique - Cas N°2 + description: Montant ASS pour personne seule avec ressources mensuelles inferieures à 659.20 + period: 2024-04 + absolute_error_margin: 0.02 + input: + famille: + parents: [parent1] + ass_base_ressources: 650 * 12 + foyer_fiscal: + declarants: [parent1] + menage: + personne_de_reference: parent1 + individus: + parent1: + ass_precondition_remplie: true + activite: chomeur + chomage_net: 0 + aah: 0 + output: + ass: 570.3 + +- name: Allocation de solidarité spécifique - Cas N°3 + description: Montant ASS pour personne en couple avec ressources mensuelles inferieures à 1318.40 + period: 2024-04 + absolute_error_margin: 0.02 + input: + famille: + parents: [parent1, parent2] + ass_base_ressources: 1300 * 12 + foyer_fiscal: + declarants: [parent1, parent2] + menage: + personne_de_reference: parent1 + conjoint: parent2 + individus: + parent1: + ass_precondition_remplie: true + activite: chomeur + chomage_net: 0 + aah: 0 + parent2: {} + output: + ass: [570.3, 0] + +- name: Allocation de solidarité spécifique - Cas N°4 + description: Montant ASS pour personne seule avec ressources mensuelles égale à 900 + period: 2024-04 + absolute_error_margin: 0.02 + input: + famille: + parents: [parent1] + ass_base_ressources: 900 * 12 + foyer_fiscal: + declarants: [parent1] + menage: + personne_de_reference: parent1 + individus: + parent1: + ass_precondition_remplie: true + activite: chomeur + chomage_net: 0 + aah: 0 + output: + ass: 430.7 + +- name: Allocation de solidarité spécifique - Cas N°5 + description: Montant ASS pour personne seule avec ressources mensuelles égale à 1500 + period: 2024-04 + absolute_error_margin: 0.02 + input: + famille: + parents: [parent1, parent2] + ass_base_ressources: 1778.3 * 12 + foyer_fiscal: + declarants: [parent1, parent2] + menage: + personne_de_reference: parent1 + conjoint: parent2 + individus: + parent1: + ass_precondition_remplie: true + activite: chomeur + chomage_net: 0 + aah: 0 + parent2: {} + output: + ass: [312.80, 0] + +- name: Allocation de solidarité spécifique - Cas N°6 + description: Montant ASS pour 2 personnes en couple éligibles toutes deux avec ressources mensuelles inferieures à 1318.40 + period: 2024-04 + absolute_error_margin: 0.02 + input: + famille: + parents: [parent1, parent2] + ass_base_ressources: 1300 * 12 + foyer_fiscal: + declarants: [parent1, parent2] + menage: + personne_de_reference: parent1 + conjoint: parent2 + individus: + parent1: + ass_precondition_remplie: true + activite: chomeur + chomage_net: 0 + aah: 0 + parent2: + ass_precondition_remplie: true + activite: chomeur + chomage_net: 0 + aah: 0 + output: + ass: 570.30 + +- name: Allocation de solidarité spécifique - Cas Non Passant N°1 + description: Montant ASS pour personne seule avec ressources mensuelles superieure à 1330.70 + period: 2024-04 + absolute_error_margin: 0.02 + input: + famille: + parents: [parent1] + ass_base_ressources: 1330.70 * 12 + foyer_fiscal: + declarants: [parent1] + menage: + personne_de_reference: parent1 + individus: + parent1: + ass_precondition_remplie: true + activite: chomeur + chomage_net: 0 + aah: 0 + output: + ass: 0 + +- name: Allocation de solidarité spécifique - Cas Non Passant N°2 + description: Montant ASS pour personne en couple avec ressources mensuelles superieure à 2091.1 + period: 2024-04 + absolute_error_margin: 0.02 + input: + famille: + parents: [parent1, parent2] + ass_base_ressources: 2091.1 * 12 + foyer_fiscal: + declarants: [parent1, parent2] + menage: + personne_de_reference: parent1 + conjoint: parent2 + individus: + parent1: + ass_precondition_remplie: true + activite: chomeur + chomage_net: 0 + aah: 0 + parent2: {} + output: + ass: 0 diff --git a/tests/formulas/ass_mayotte.yaml b/tests/formulas/ass_mayotte.yaml index 9081a261c9..5d3d98a413 100644 --- a/tests/formulas/ass_mayotte.yaml +++ b/tests/formulas/ass_mayotte.yaml @@ -16,3 +16,22 @@ ass_precondition_remplie: true output: ass: 246.90 + +# Cas N°2 +- name: Montant ASS pour une personne seule réside à Mayotte avec ressources mensuelles inférieures à 329.20 + period: 2023-04 + absolute_error_margin: 0.02 + input: + famille: + parents: [parent1] + ass_base_ressources: 329.20 * 12 + foyer_fiscal: + declarants: [parent1] + menage: + personne_de_reference: parent1 + residence_mayotte: true + individus: + parent1: + ass_precondition_remplie: true + output: + ass: 272.7 From a3a0173b4b74efa98cffe140952b35dcb204b405 Mon Sep 17 00:00:00 2001 From: Martin Billard Date: Tue, 14 May 2024 10:20:09 +0200 Subject: [PATCH 4/9] =?UTF-8?q?Revalorisation=20compl=C3=A9mentaire=20sant?= =?UTF-8?q?=C3=A9=20solidaire,=20plafond=20de=20base=20(css)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../minima_sociaux/cs/cmu/plafond_base.yaml | 6 +- tests/formulas/asi.yaml | 10 +-- tests/formulas/cs/css.yaml | 86 +++++++++++++++++++ 3 files changed, 96 insertions(+), 6 deletions(-) diff --git a/openfisca_france/parameters/prestations_sociales/solidarite_insertion/minima_sociaux/cs/cmu/plafond_base.yaml b/openfisca_france/parameters/prestations_sociales/solidarite_insertion/minima_sociaux/cs/cmu/plafond_base.yaml index 91419b36e7..db161ba98d 100644 --- a/openfisca_france/parameters/prestations_sociales/solidarite_insertion/minima_sociaux/cs/cmu/plafond_base.yaml +++ b/openfisca_france/parameters/prestations_sociales/solidarite_insertion/minima_sociaux/cs/cmu/plafond_base.yaml @@ -40,9 +40,11 @@ values: value: 9571 2023-04-01: value: 9719 + 2024-04-01: + value: 10166 metadata: short_label: Plafond annuel - last_value_still_valid_on: "2021-04-01" + last_value_still_valid_on: "2024-04-01" unit: currency reference: 2019-04-01: @@ -61,6 +63,8 @@ metadata: href: https://www.legifrance.gouv.fr/loda/id/JORFTEXT000047387345 - title: Arrêté du 30/03/2023 href: https://www.legifrance.gouv.fr/loda/id/JORFTEXT000047387932 + - title: Arrêté du 26/03/2024, art. 1 + href: https://www.legifrance.gouv.fr/jorf/id/JORFTEXT000049339291 documentation: |- Le plafond varie selon la composition du foyer. Il est revalorisé au 1er avril de chaque année. Le montant ainsi revalorisé est constaté par arrêté du ministre chargé de la sécurité sociale. diff --git a/tests/formulas/asi.yaml b/tests/formulas/asi.yaml index db4f31f147..e1cd94a084 100644 --- a/tests/formulas/asi.yaml +++ b/tests/formulas/asi.yaml @@ -142,14 +142,14 @@ #Source: https://www.ameli.fr/assure/remboursements/pensions-allocations-rentes/invalidite - name: Cas test de l'ASI après reval 2024 - Célibataire (8) - period: 2024-01 + period: 2024-10 absolute_error_margin: 1 input: - age: 35 + age: 62 asi_aspa_base_ressources_individu: 500 asi_eligibilite: true output: - asi: 360 + asi: 399 - name: Cas test de l'ASI après reval 2024 - Couple marié (9) period: 2024-10 @@ -160,12 +160,12 @@ maries: true individus: parent1: - age: 35 + age: 64 asi_aspa_base_ressources_individu: 1000 asi_eligibilite: true activite: retraite parent2: - age: 35 + age: 64 asi_aspa_base_ressources_individu: 0 asi_eligibilite: true activite: retraite diff --git a/tests/formulas/cs/css.yaml b/tests/formulas/cs/css.yaml index 5af1fb33b9..df2ac758bf 100644 --- a/tests/formulas/cs/css.yaml +++ b/tests/formulas/cs/css.yaml @@ -303,3 +303,89 @@ salarie_regime_alsace_moselle: [true, true, true, true, true, true, true, true] output: css_participation_forfaitaire_montant_i: [2.80, 4.90, 4.90, 7.30, 7.30, 8.70, 8.70, 10.50] + + +- name: "CSS: Plafond CMU et ACS pour une personne seule 2024" + period: 2024-11 + relative_error_margin: 0.01 + input: + date_naissance: 1973-05-01 + output: + cmu_c_plafond: 10166 + acs_plafond: 13724 + +- name: "CSS: Plafond CMU et ACS pour un couple 2024" + period: 2024-11 + relative_error_margin: 0.01 + input: + individus: + parent1: + date_naissance: 1961-01-01 + parent2: + date_naissance: 1951-05-01 + famille: + parents: [parent1, parent2] + output: + cmu_c_plafond: 15249 + acs_plafond: 20586 + +- name: "CSS: Plafond CMU et ACS pour un couple avec un enfants 2024" + period: 2024-11 + relative_error_margin: 0.01 + input: + individus: + parent1: + date_naissance: 1994-01-01 + parent2: + date_naissance: 1984-02-01 + enfant1: + date_naissance: 2009-07-01 + famille: + parents: [parent1, parent2] + enfants: [enfant1] + output: + cmu_c_plafond: 18298 + acs_plafond: 24703 + +- name: "CSS: Plafond CMU et ACS pour un couple avec deux enfants 2024" + period: 2024-11 + relative_error_margin: 0.01 + input: + individus: + parent1: + date_naissance: 1994-01-01 + parent2: + date_naissance: 1984-02-01 + enfant1: + date_naissance: 2009-07-01 + enfant2: + date_naissance: 2015-02-25 + famille: + parents: [parent1, parent2] + enfants: [enfant1, enfant2] + output: + cmu_c_plafond: 21348 + acs_plafond: 28820 + + +- name: "CSS: Plafond CMU et ACS pour un couple avec trois enfants 2024" + period: 2024-11 + relative_error_margin: 0.01 + input: + individus: + parent1: + date_naissance: 1994-01-01 + parent2: + date_naissance: 1984-02-01 + enfant1: + date_naissance: 2009-07-01 + enfant2: + date_naissance: 2015-02-25 + enfant3: + date_naissance: 2011-06-01 + famille: + parents: [parent1, parent2] + enfants: [enfant1, enfant2, enfant3] + output: + cmu_c_plafond: 25414 + acs_plafond: 34310 From e46c6b459b13c7b385b40a77d80fb1a7e60b08f4 Mon Sep 17 00:00:00 2001 From: Martin Billard Date: Tue, 14 May 2024 10:46:56 +0200 Subject: [PATCH 5/9] Revalorisation base mensuelle allocation familiale (BAMF) 1er avril 2024 --- .../prestations_familiales/bmaf/bmaf.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/openfisca_france/parameters/prestations_sociales/prestations_familiales/bmaf/bmaf.yaml b/openfisca_france/parameters/prestations_sociales/prestations_familiales/bmaf/bmaf.yaml index d2c43229a1..e4e993129d 100644 --- a/openfisca_france/parameters/prestations_sociales/prestations_familiales/bmaf/bmaf.yaml +++ b/openfisca_france/parameters/prestations_sociales/prestations_familiales/bmaf/bmaf.yaml @@ -182,8 +182,10 @@ values: value: 439.17 2023-04-01: value: 445.93 + 2024-04-01: + value: 466.44 metadata: - last_value_still_valid_on: "2023-05-04" + last_value_still_valid_on: "2024-04-01" label_en: Monthly basis for the computation of family allowances (BMAF) ipp_csv_id: bmaf unit: currency @@ -439,6 +441,9 @@ metadata: 2023-04-01: title: Instruction interministérielle DSS/2B/2023/41 du 24 mars 2023 href: https://sante.gouv.fr/fichiers/bo/2023/2023.6.sante.pdf + 2024-04-01: + title: Instruction interministérielle n° DSS/2B/2024/43 du 20 mars 2024 + href: https://sante.gouv.fr/fichiers/bo/2024/2024.6.sante.pdf official_journal_date: 1946-07-01: "1946-08-23" 1947-02-01: "1947-04-06" @@ -593,3 +598,5 @@ metadata: - title: Revalorisation de 1,8% 2022-07-01: - title: Revalorisation de 4% + 2024-04-01: + - title: Revalorisation de 4,6% From 7216bec696719ad39e389b5d36215345f8e4af27 Mon Sep 17 00:00:00 2001 From: Martin Billard Date: Tue, 14 May 2024 13:38:15 +0200 Subject: [PATCH 6/9] =?UTF-8?q?Revalorisation=20allocation=20aux=20adultes?= =?UTF-8?q?=20handicap=C3=A9s=20(AAH)=201er=20avril=202024?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../prestations_etat_de_sante/invalidite/aah/montant.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/openfisca_france/parameters/prestations_sociales/prestations_etat_de_sante/invalidite/aah/montant.yaml b/openfisca_france/parameters/prestations_sociales/prestations_etat_de_sante/invalidite/aah/montant.yaml index 7259a0d261..54b2320f73 100644 --- a/openfisca_france/parameters/prestations_sociales/prestations_etat_de_sante/invalidite/aah/montant.yaml +++ b/openfisca_france/parameters/prestations_sociales/prestations_etat_de_sante/invalidite/aah/montant.yaml @@ -62,9 +62,11 @@ values: value: 956.65 2023-04-01: value: 971.37 + 2024-04-01: + value: 1016.05 metadata: short_label: Montant maximal (mensuel) - last_value_still_valid_on: "2023-05-25" + last_value_still_valid_on: "2024-05-14" label_en: Adult disability allowance (AAH) ipp_csv_id: montant_80_aah unit: currency @@ -150,6 +152,9 @@ metadata: 2023-04-01: title: Décret n° 2023-328 du 29 avril 2023 href: https://www.legifrance.gouv.fr/loda/article_lc/LEGIARTI000047511476 + 2024-04-01: + title: Décret n° 2024-396 du 29/04/2024, art. 1 + href: https://www.legifrance.gouv.fr/jorf/id/JORFTEXT000049486524 official_journal_date: 2006-07-01: "2006-08-04" 2007-01-01: 2006-12-31; 2006-12-30 @@ -175,6 +180,7 @@ metadata: 2021-04-01: "2021-04-30" 2022-04-01: "2022-04-27" 2023-04-01: "2023-04-30" + 2024-04-01: "2024-04-29" documentation: |- Si le bénéficiaire touche une pension ou une rente (invalidité, retraite, accident du travail), le montant d'AAH reçu équivaut à la différence entre le montant de l'AAH en vigueur et le montant de la pension/rente perçu. Si le bénéficiaire est titulaire d'une carte d'invalidité, l'abattement s'applique sur le montant perçu au cours de l'année au titre de sa rente ou de sa pension. From 1fdfd6cc9025d6b3e5eae03fdf0625729960a295 Mon Sep 17 00:00:00 2001 From: Martin Billard Date: Tue, 14 May 2024 13:52:56 +0200 Subject: [PATCH 7/9] =?UTF-8?q?Revalorisation=20prime=20d'activit=C3=A9=20?= =?UTF-8?q?(PPA)=201er=20avril=202024?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../minima_sociaux/ppa/pa_m/montant_de_base.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/openfisca_france/parameters/prestations_sociales/solidarite_insertion/minima_sociaux/ppa/pa_m/montant_de_base.yaml b/openfisca_france/parameters/prestations_sociales/solidarite_insertion/minima_sociaux/ppa/pa_m/montant_de_base.yaml index 294e9aeebc..2fb92b5255 100644 --- a/openfisca_france/parameters/prestations_sociales/solidarite_insertion/minima_sociaux/ppa/pa_m/montant_de_base.yaml +++ b/openfisca_france/parameters/prestations_sociales/solidarite_insertion/minima_sociaux/ppa/pa_m/montant_de_base.yaml @@ -20,9 +20,11 @@ values: value: 586.23 2023-04-01: value: 595.25 + 2024-04-01: + value: 622.63 metadata: short_label: Montant de base - last_value_still_valid_on: "2023-05-09" + last_value_still_valid_on: "2024-05-14" label_en: "Active solidarity income - Activity premium (PPA) : Amounts" ipp_csv_id: pa_montant_base unit: currency @@ -59,6 +61,9 @@ metadata: 2023-04-01: title: Décret n° 2023-343 du 4 mai 2023, article 1 href: https://www.legifrance.gouv.fr/jorf/article_jo/JORFARTI000047521600 + 2024-04-01: + title: Décret n° 2024-403 du 01/05/2024 + href: https://www.legifrance.gouv.fr/jorf/id/JORFTEXT000049490757 official_journal_date: 2016-01-01: "2015-12-22" 2016-04-01: "2016-05-03" @@ -70,6 +75,7 @@ metadata: 2022-04-01: "2022-04-27" 2022-07-01: "2022-08-17" 2023-04-01: "2023-05-05" + 2024-04-01: "2024-05-01" notes: 2016-01-01: - title: Création de la prime pour l'activité. From ced127be007f01b843e6eec92a6727c34185bd6a Mon Sep 17 00:00:00 2001 From: Martin Billard Date: Tue, 14 May 2024 14:06:37 +0200 Subject: [PATCH 8/9] =?UTF-8?q?Revalorisation=20revenu=20de=20solidarit?= =?UTF-8?q?=C3=A9=20active=20(RSA)=201er=20avril=202024,=20montant=20de=20?= =?UTF-8?q?base?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../minima_sociaux/rsa/rsa_m/montant_de_base_du_rsa.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/openfisca_france/parameters/prestations_sociales/solidarite_insertion/minima_sociaux/rsa/rsa_m/montant_de_base_du_rsa.yaml b/openfisca_france/parameters/prestations_sociales/solidarite_insertion/minima_sociaux/rsa/rsa_m/montant_de_base_du_rsa.yaml index 689fe5d5f4..b48e6da611 100644 --- a/openfisca_france/parameters/prestations_sociales/solidarite_insertion/minima_sociaux/rsa/rsa_m/montant_de_base_du_rsa.yaml +++ b/openfisca_france/parameters/prestations_sociales/solidarite_insertion/minima_sociaux/rsa/rsa_m/montant_de_base_du_rsa.yaml @@ -42,9 +42,11 @@ values: value: 598.54 2023-04-01: value: 607.75 + 2024-04-01: + value: 635.71 metadata: short_label: RSA socle - last_value_still_valid_on: "2023-05-09" + last_value_still_valid_on: "2024-05-14" label_en: "Active solidarity income (RSA): Basic amount" ipp_csv_id: brsa unit: currency @@ -114,6 +116,9 @@ metadata: 2023-04-01: title: Décret n° 2023-340 du 4 mai 2023, article 1 href: https://www.legifrance.gouv.fr/jorf/article_jo/JORFARTI000047521567 + 2024-04-01: + title: Décret n° 2024-396 du 29/04/2024, article 1 + href: https://www.legifrance.gouv.fr/jorf/id/JORFTEXT000049486510 official_journal_date: 2009-06-01: "2009-04-16" 2010-01-01: "2010-01-17" @@ -136,6 +141,7 @@ metadata: 2022-04-01: "2022-04-27" 2022-07-01: "2022-08-17" 2023-04-01: "2023-05-05" + 2024-04-01: "2024-04-19" notes: 2022-07-01: - title: Revalorisation de 4% From cfdc9ecb001224c11fe584573e399ea5f0f98ce9 Mon Sep 17 00:00:00 2001 From: Martin Billard Date: Fri, 24 May 2024 14:29:29 +0200 Subject: [PATCH 9/9] =?UTF-8?q?Suppression=20test,=20suite=20=C3=A0=20la?= =?UTF-8?q?=20discussion=20sur=20les=20tests=20sur=20les=20revals?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/formulas/asi.yaml | 45 -------- tests/formulas/ass_04_2024.yaml | 179 -------------------------------- tests/formulas/ass_mayotte.yaml | 19 ---- tests/formulas/cs/css.yaml | 86 --------------- 4 files changed, 329 deletions(-) delete mode 100644 tests/formulas/ass_04_2024.yaml diff --git a/tests/formulas/asi.yaml b/tests/formulas/asi.yaml index e1cd94a084..70f8886bb7 100644 --- a/tests/formulas/asi.yaml +++ b/tests/formulas/asi.yaml @@ -140,48 +140,3 @@ output: asi: [200, 200] #Source: https://www.ameli.fr/assure/remboursements/pensions-allocations-rentes/invalidite - -- name: Cas test de l'ASI après reval 2024 - Célibataire (8) - period: 2024-10 - absolute_error_margin: 1 - input: - age: 62 - asi_aspa_base_ressources_individu: 500 - asi_eligibilite: true - output: - asi: 399 - -- name: Cas test de l'ASI après reval 2024 - Couple marié (9) - period: 2024-10 - absolute_error_margin: 1 - input: - famille: - parents: [parent1, parent2] - maries: true - individus: - parent1: - age: 64 - asi_aspa_base_ressources_individu: 1000 - asi_eligibilite: true - activite: retraite - parent2: - age: 64 - asi_aspa_base_ressources_individu: 0 - asi_eligibilite: true - activite: retraite - foyers_fiscaux: - foyer_fiscal_0: - declarants: - - parent1 - foyer_fiscal_1: - declarants: - - parent2 - menages: - menage_0: - personne_de_reference: - - parent1 - menage_1: - personne_de_reference: - - parent2 - output: - asi: [287.07, 287.07] \ No newline at end of file diff --git a/tests/formulas/ass_04_2024.yaml b/tests/formulas/ass_04_2024.yaml deleted file mode 100644 index 10ca154715..0000000000 --- a/tests/formulas/ass_04_2024.yaml +++ /dev/null @@ -1,179 +0,0 @@ -- name: Allocation de solidarité spécifique - Cas N°1 - description: Montant ASS pour personne seule sans ressources - period: 2024-04 - absolute_error_margin: 0.02 - input: - famille: - parents: [parent1] - ass_base_ressources: 0 * 12 - foyer_fiscal: - declarants: [parent1] - menage: - personne_de_reference: parent1 - individus: - parent1: - ass_precondition_remplie: true - activite: chomeur - chomage_net: 0 - aah: 0 - output: - ass: 570.3 - -- name: Allocation de solidarité spécifique - Cas N°2 - description: Montant ASS pour personne seule avec ressources mensuelles inferieures à 659.20 - period: 2024-04 - absolute_error_margin: 0.02 - input: - famille: - parents: [parent1] - ass_base_ressources: 650 * 12 - foyer_fiscal: - declarants: [parent1] - menage: - personne_de_reference: parent1 - individus: - parent1: - ass_precondition_remplie: true - activite: chomeur - chomage_net: 0 - aah: 0 - output: - ass: 570.3 - -- name: Allocation de solidarité spécifique - Cas N°3 - description: Montant ASS pour personne en couple avec ressources mensuelles inferieures à 1318.40 - period: 2024-04 - absolute_error_margin: 0.02 - input: - famille: - parents: [parent1, parent2] - ass_base_ressources: 1300 * 12 - foyer_fiscal: - declarants: [parent1, parent2] - menage: - personne_de_reference: parent1 - conjoint: parent2 - individus: - parent1: - ass_precondition_remplie: true - activite: chomeur - chomage_net: 0 - aah: 0 - parent2: {} - output: - ass: [570.3, 0] - -- name: Allocation de solidarité spécifique - Cas N°4 - description: Montant ASS pour personne seule avec ressources mensuelles égale à 900 - period: 2024-04 - absolute_error_margin: 0.02 - input: - famille: - parents: [parent1] - ass_base_ressources: 900 * 12 - foyer_fiscal: - declarants: [parent1] - menage: - personne_de_reference: parent1 - individus: - parent1: - ass_precondition_remplie: true - activite: chomeur - chomage_net: 0 - aah: 0 - output: - ass: 430.7 - -- name: Allocation de solidarité spécifique - Cas N°5 - description: Montant ASS pour personne seule avec ressources mensuelles égale à 1500 - period: 2024-04 - absolute_error_margin: 0.02 - input: - famille: - parents: [parent1, parent2] - ass_base_ressources: 1778.3 * 12 - foyer_fiscal: - declarants: [parent1, parent2] - menage: - personne_de_reference: parent1 - conjoint: parent2 - individus: - parent1: - ass_precondition_remplie: true - activite: chomeur - chomage_net: 0 - aah: 0 - parent2: {} - output: - ass: [312.80, 0] - -- name: Allocation de solidarité spécifique - Cas N°6 - description: Montant ASS pour 2 personnes en couple éligibles toutes deux avec ressources mensuelles inferieures à 1318.40 - period: 2024-04 - absolute_error_margin: 0.02 - input: - famille: - parents: [parent1, parent2] - ass_base_ressources: 1300 * 12 - foyer_fiscal: - declarants: [parent1, parent2] - menage: - personne_de_reference: parent1 - conjoint: parent2 - individus: - parent1: - ass_precondition_remplie: true - activite: chomeur - chomage_net: 0 - aah: 0 - parent2: - ass_precondition_remplie: true - activite: chomeur - chomage_net: 0 - aah: 0 - output: - ass: 570.30 - -- name: Allocation de solidarité spécifique - Cas Non Passant N°1 - description: Montant ASS pour personne seule avec ressources mensuelles superieure à 1330.70 - period: 2024-04 - absolute_error_margin: 0.02 - input: - famille: - parents: [parent1] - ass_base_ressources: 1330.70 * 12 - foyer_fiscal: - declarants: [parent1] - menage: - personne_de_reference: parent1 - individus: - parent1: - ass_precondition_remplie: true - activite: chomeur - chomage_net: 0 - aah: 0 - output: - ass: 0 - -- name: Allocation de solidarité spécifique - Cas Non Passant N°2 - description: Montant ASS pour personne en couple avec ressources mensuelles superieure à 2091.1 - period: 2024-04 - absolute_error_margin: 0.02 - input: - famille: - parents: [parent1, parent2] - ass_base_ressources: 2091.1 * 12 - foyer_fiscal: - declarants: [parent1, parent2] - menage: - personne_de_reference: parent1 - conjoint: parent2 - individus: - parent1: - ass_precondition_remplie: true - activite: chomeur - chomage_net: 0 - aah: 0 - parent2: {} - output: - ass: 0 diff --git a/tests/formulas/ass_mayotte.yaml b/tests/formulas/ass_mayotte.yaml index 5d3d98a413..9081a261c9 100644 --- a/tests/formulas/ass_mayotte.yaml +++ b/tests/formulas/ass_mayotte.yaml @@ -16,22 +16,3 @@ ass_precondition_remplie: true output: ass: 246.90 - -# Cas N°2 -- name: Montant ASS pour une personne seule réside à Mayotte avec ressources mensuelles inférieures à 329.20 - period: 2023-04 - absolute_error_margin: 0.02 - input: - famille: - parents: [parent1] - ass_base_ressources: 329.20 * 12 - foyer_fiscal: - declarants: [parent1] - menage: - personne_de_reference: parent1 - residence_mayotte: true - individus: - parent1: - ass_precondition_remplie: true - output: - ass: 272.7 diff --git a/tests/formulas/cs/css.yaml b/tests/formulas/cs/css.yaml index df2ac758bf..5af1fb33b9 100644 --- a/tests/formulas/cs/css.yaml +++ b/tests/formulas/cs/css.yaml @@ -303,89 +303,3 @@ salarie_regime_alsace_moselle: [true, true, true, true, true, true, true, true] output: css_participation_forfaitaire_montant_i: [2.80, 4.90, 4.90, 7.30, 7.30, 8.70, 8.70, 10.50] - - -- name: "CSS: Plafond CMU et ACS pour une personne seule 2024" - period: 2024-11 - relative_error_margin: 0.01 - input: - date_naissance: 1973-05-01 - output: - cmu_c_plafond: 10166 - acs_plafond: 13724 - -- name: "CSS: Plafond CMU et ACS pour un couple 2024" - period: 2024-11 - relative_error_margin: 0.01 - input: - individus: - parent1: - date_naissance: 1961-01-01 - parent2: - date_naissance: 1951-05-01 - famille: - parents: [parent1, parent2] - output: - cmu_c_plafond: 15249 - acs_plafond: 20586 - -- name: "CSS: Plafond CMU et ACS pour un couple avec un enfants 2024" - period: 2024-11 - relative_error_margin: 0.01 - input: - individus: - parent1: - date_naissance: 1994-01-01 - parent2: - date_naissance: 1984-02-01 - enfant1: - date_naissance: 2009-07-01 - famille: - parents: [parent1, parent2] - enfants: [enfant1] - output: - cmu_c_plafond: 18298 - acs_plafond: 24703 - -- name: "CSS: Plafond CMU et ACS pour un couple avec deux enfants 2024" - period: 2024-11 - relative_error_margin: 0.01 - input: - individus: - parent1: - date_naissance: 1994-01-01 - parent2: - date_naissance: 1984-02-01 - enfant1: - date_naissance: 2009-07-01 - enfant2: - date_naissance: 2015-02-25 - famille: - parents: [parent1, parent2] - enfants: [enfant1, enfant2] - output: - cmu_c_plafond: 21348 - acs_plafond: 28820 - - -- name: "CSS: Plafond CMU et ACS pour un couple avec trois enfants 2024" - period: 2024-11 - relative_error_margin: 0.01 - input: - individus: - parent1: - date_naissance: 1994-01-01 - parent2: - date_naissance: 1984-02-01 - enfant1: - date_naissance: 2009-07-01 - enfant2: - date_naissance: 2015-02-25 - enfant3: - date_naissance: 2011-06-01 - famille: - parents: [parent1, parent2] - enfants: [enfant1, enfant2, enfant3] - output: - cmu_c_plafond: 25414 - acs_plafond: 34310