Skip to content
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

Ajout rpns_benifice à la base ressources aide_logement #2133

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bonjour !
Je me demandais s'il était possible d'utiliser une variable déjà définie à la place de plus_values_gains_divers, par exemple à partir de plus_values_base_large ou assiettes_csg_plus_values (en faisant attention aux interactions avec rpns_pv qui sont comprises dans la base_ressources_individu dans ce cas). Cela permettrait de mieux voir à quels revenus cela fait référence, et d'éviter de multiplier les variables d'inputs.

Original file line number Diff line number Diff line change
Expand Up @@ -3842,6 +3842,13 @@ def formula(foyer_fiscal, period, parameters):
return ppe


class plus_values_gains_divers(Variable):
value_type = float
entity = FoyerFiscal
label = 'Plus-values et gains divers'
definition_period = YEAR


class deficit_exercice(Variable):
value_type = float
entity = FoyerFiscal
Expand Down
45 changes: 43 additions & 2 deletions openfisca_france/model/prestations/aides_logement.py
Original file line number Diff line number Diff line change
Expand Up @@ -582,13 +582,13 @@ def formula_2021_01_01(individu, period, parameters):

abattement_frais_pro = where(frais_reels > abattement_forfaitaire, frais_reels, abattement_forfaitaire)

rpns = individu('rpns_imposables', period.n_2)
# rpns = individu('rpns_imposables', period.n_2)
rpns_pvce = individu('rpns_pvce', period.n_2)
rpns_pvct = individu('rpns_pvct', period.n_2)
rpns_mvct = individu('moins_values_court_terme_non_salaries', period.n_2)
rpns_mvlt = individu('moins_values_long_terme_non_salaries', period.n_2)

rpns = rpns + rpns_pvce + rpns_pvct + rpns_mvct + rpns_mvlt
rpns = rpns_pvce + rpns_pvct + rpns_mvct + rpns_mvlt
# TO DO : compléter la formule pour prendre en compte la disposition particulière concernant les indépendants ayant commencé une activité entre N-2 et N.
# Non implémentée car diffile à comprendre ce qui est fait exactement

Expand Down Expand Up @@ -898,6 +898,7 @@ class aide_logement_base_ressources(Variable):
set_input = set_input_divide_by_period

def formula_2021_01_01(famille, period, parameters):
annee_glissante = Period(('year', period.start, 1)).offset(-1).offset(-1, 'month')
biactivite = famille('aide_logement_biactivite', period)
Pr = parameters(period).prestations_sociales.aides_logement.ressources
age_etudiant_max = parameters(period).prestations_sociales.aides_logement.allocations_logement.autres.age_max_etudiant
Expand All @@ -912,6 +913,45 @@ def formula_2021_01_01(famille, period, parameters):
demandeur_declarant_principal = famille.demandeur.has_role(FoyerFiscal.DECLARANT_PRINCIPAL)
conjoint_declarant_principal = famille.conjoint.has_role(FoyerFiscal.DECLARANT_PRINCIPAL)

# Ressources N-2
indemnites_journalieres_atexa_i = famille.members('indemnites_journalieres_atexa', period.n_2, options=[ADD])
gains_exceptionnels_i = famille.members('gains_exceptionnels', period.n_2, options=[ADD])
benefice_agricole_i_n_2 = famille.members('rpns_benefice_exploitant_agricole', period.n_2)
benefice_micro_entreprise_i_n_2 = famille.members('rpns_micro_entreprise_benefice', period.n_2)
benefice_auto_entrepreneur_i_n_2 = famille.members('rpns_auto_entrepreneur_benefice', period.n_2, options=[ADD])
rpns_autres_revenus_i_n_2 = famille.members('rpns_autres_revenus', period.n_2)
# En l'absence de benefices TNS en N-2, on recupère les bénéfices de l'année glissante à compter de M-1
benefice_agricole_i_m_12 = famille.members('rpns_benefice_exploitant_agricole', annee_glissante)
benefice_micro_entreprise_i_m_12 = famille.members('rpns_micro_entreprise_benefice', annee_glissante)
benefice_auto_entrepreneur_i_m_12 = famille.members('rpns_auto_entrepreneur_benefice', annee_glissante,
options=[ADD])
rpns_autres_revenus_i_m_12 = famille.members('rpns_autres_revenus', annee_glissante)
benefice_agricole_i = where(benefice_agricole_i_n_2 > 0, benefice_agricole_i_n_2, benefice_agricole_i_m_12)
benefice_micro_entreprise_i = where(benefice_micro_entreprise_i_n_2 > 0, benefice_micro_entreprise_i_n_2,
benefice_micro_entreprise_i_m_12)
benefice_auto_entrepreneur_i = where(benefice_auto_entrepreneur_i_n_2 > 0, benefice_auto_entrepreneur_i_n_2,
benefice_auto_entrepreneur_i_m_12)
rpns_autres_revenus_i = where(rpns_autres_revenus_i_n_2 > 0, rpns_autres_revenus_i_n_2,
rpns_autres_revenus_i_m_12)

ressources_n_2_i = (
indemnites_journalieres_atexa_i
+ gains_exceptionnels_i
+ benefice_agricole_i
+ benefice_micro_entreprise_i
+ benefice_auto_entrepreneur_i
+ rpns_autres_revenus_i
)
ressources_n_2 = famille.sum(ressources_n_2_i, role=Famille.PARENT)
f4ba = famille.demandeur.foyer_fiscal('f4ba', period.n_2)
plus_values_gains_divers = famille.demandeur.foyer_fiscal('plus_values_gains_divers', period.n_2)
deficit_exercice = famille.demandeur.foyer_fiscal('deficit_exercice', period.n_2)
ressources_n_2 += (
f4ba
+ plus_values_gains_divers
- deficit_exercice
)

# Revenus du foyer fiscal
aide_logement_base_revenus_fiscaux = (
famille.demandeur.foyer_fiscal('aide_logement_base_revenus_fiscaux', period.n_2) * demandeur_declarant_principal
Expand All @@ -936,6 +976,7 @@ def formula_2021_01_01(famille, period, parameters):
+ ressources_patrimoine
+ aide_logement_base_revenus_fiscaux
+ pensions_alimentaires_versees
+ ressources_n_2
)

# Abattement forfaitaire pour double activité
Expand Down
6 changes: 3 additions & 3 deletions tests/formulas/aides_logement_reforme_janvier_2021.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
2021-01: actif
date_naissance:
2021-01: 1962-01-01
rpns_imposables:
rpns_autres_revenus:
2019: 6864
foyer_fiscal:
declarants: [personne1]
Expand Down Expand Up @@ -147,7 +147,7 @@
activite: actif
date_naissance:
2021-01: 1981-01-01
rpns_imposables:
rpns_autres_revenus:
2019: 21502
personne2:
activite: inactif
Expand Down Expand Up @@ -191,7 +191,7 @@
2021-01: actif
date_naissance:
2021-01: 1964-01-01
rpns_imposables:
rpns_autres_revenus:
2019: 4935
foyer_fiscal:
declarants: [personne1]
Expand Down
Loading