Skip to content
Snippets Groups Projects
Commit 5c112c12 authored by sandcha's avatar sandcha
Browse files

Initialisation de la réforme du PLF 2023

Revalorisations des enveloppes DSR et DSU 2023
parent 67e81dfb
Branches plf-2023
No related tags found
1 merge request!25Draft : Ajoute la réforme du PLF 2023
Pipeline #6339 failed
from openfisca_core.periods import period
from openfisca_core.reforms import Reform
def revalorisation_enveloppes(parameters):
# PLF 2023 > DISPOSITIONS PERMANENTES > II – Autres Mesures
# > Relations avec les collectivités territoriales
# https://www.assemblee-nationale.fr/dyn/16/textes/l16b0273_projet-loi#_Toc115111306
reform_period = period(2023)
DSR_AUGMENTATION_MONTANT = 90_000_000
DSU_AUGMENTATION_MONTANT = 90_000_000
parameters.dotation_solidarite_rurale.augmentation_montant.update(
start=reform_period.start,
value=DSR_AUGMENTATION_MONTANT
)
parameters.dotation_solidarite_urbaine.augmentation_montant.update(
start=reform_period.start,
value=DSU_AUGMENTATION_MONTANT
)
return parameters
class plf_2023(Reform):
def apply(self):
self.modify_parameters(modifier_function = revalorisation_enveloppes)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment