Skip to content

Commit

Permalink
Ajoute nouvelle variable PFU (somme de tous les taux, pour obtenir le…
Browse files Browse the repository at this point in the history
… taux connu mais théorique de 30%)
  • Loading branch information
DorineLam committed Sep 26, 2024
1 parent 7c8f4d8 commit 9de0a94
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions openfisca_france/model/mesures.py
Original file line number Diff line number Diff line change
Expand Up @@ -793,3 +793,19 @@ def formula(menage, period, parameters):
+ isf_ifi
+ prelevement_liberatoire_autoentrepreneur
)


class prelevement_forfaitaire_unique(Variable):
value_type = float
entity = FoyerFiscal
label = "Prélèvement forfaitaire unique"
definition_period = YEAR

def formula_2018_01_01(foyer_fiscal, period, parameters):
return (
foyer_fiscal('prelevement_forfaitaire_unique_ir_hors_assurance_vie', period)
+ foyer_fiscal('prelevement_forfaitaire_unique_ir_sur_assurance_vie', period)
+ foyer_fiscal('prelevements_sociaux_revenus_capital_hors_csg_crds', period)
+ foyer_fiscal('csg_revenus_capital', period)
+ foyer_fiscal('crds_revenus_capital', period)
)

0 comments on commit 9de0a94

Please sign in to comment.