Skip to content

Commit

Permalink
Transforme attribut hhc en variable
Browse files Browse the repository at this point in the history
  • Loading branch information
b-michaud committed Jul 22, 2024
1 parent 44686ed commit b8a7a12
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,7 @@ def create_contrat_de_travail(individus, year, period, salaire_type = 'imposable
del temps_plein, temps_plein_sous_smic

# 2.2 Pour les temps partiel on prends les heures hhc
individus.loc[(individus.hhc > 35) & (individus.hhc.notnull()) & (individus.contrat_de_travail == 1),'hhc'] = 35
individus.loc[(individus[hhc] > 35) & (individus[hhc].notnull()) & (individus.contrat_de_travail == 1),'hhc'] = 35
individus.loc[(passage_temps_plein_temps_partiel) & (individus.hhc.isnull()), 'hhc'] = 35
del passage_temps_plein_temps_partiel
# on met 35h aux individus qui étaient à temps plein et qu'on a basculé en temps partiel pour la part salarié dans l'année
Expand Down

0 comments on commit b8a7a12

Please sign in to comment.