-
Notifications
You must be signed in to change notification settings - Fork 101
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
Update cotisations 2018 #867
Conversation
64f93b0
to
1feafed
Compare
<3 thank you! |
@SophieIPP : pas mal de cotisations sont là. |
tu veux dire qu'il manque des mises à jour ? (à part le versement transport) Non je n'ai pas les références législatives, je me suis basé sur les fiches et lettres de l'URSSAF essentiellement. |
@laem: si on en trouve on te dira (avec @SophieIPP, on doit mettre à jour les barèmes IPP en excel ... toujours pas complètement réglée cette affaire-là). |
@benjello @sandcha je pense que c'est dommage de laisser traîner cette PR. Elle contient des changegments aussi importants que le SMIC et le plafond de la sécu. S'il y a des choses perfectibles, comme les références législatives, elle devraient faire l'objet d'une nouvelle issue. Cette branche est en production sur le module embauche depuis le 1er janvier. |
@laem ; next thing on my TODO-list ;-) |
LGTM @sandcha |
Un oubli, le taux de la cotisation GMP a aussi changé. |
C'est cool ! Merci. Il faut pour merger :
|
It is removed
00e96be
to
fbab6d7
Compare
def formula_2018(self, simulation, period): | ||
salarie_regime_alsace_moselle = simulation.calculate('salarie_regime_alsace_moselle', period) | ||
|
||
cotisation_regime_alsace_moselle = apply_bareme( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Morendil C'est ici que le problème se pose !
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Il faut prendre la syntaxe post-migration comme ici
@@ -182,6 +182,8 @@ def formula_2015_01_01(individu, period, parameters): | |||
|
|||
return cotisation | |||
|
|||
def formula_2018(self, simulation, period): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
def formula_2018(individu, period, parameters):
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Et plus bas aussi (dans apply_barame)
@@ -633,6 +636,21 @@ def formula(individu, period, parameters): | |||
|
|||
return cotisation | |||
|
|||
def formula_2018(self, simulation, period): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
def formula_2018(individu, period, parameters):
def formula_2018(self, simulation, period): | ||
salarie_regime_alsace_moselle = simulation.calculate('salarie_regime_alsace_moselle', period) | ||
|
||
cotisation_regime_alsace_moselle = apply_bareme( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cotisation_regime_alsace_moselle = apply_bareme(
individu,
period,
parameters,
cotisation_type = 'salarie',
bareme_name = 'maladie_alsace_moselle',
variable_name = 'mmid_salarie',
)
salaire_de_base: 1500 | ||
complementaire_sante_taux_employeur: .625 | ||
complementaire_sante_montant: 40 | ||
categorie_salarie: prive_cadre # cadre |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Plus besoin du commentaire avec les énumérés non ?
No description provided.