🐛 Réparation de la répartition de la CSG

pull/262/head
Mael 2018-06-20 09:43:23 +02:00
parent eaf9c3d32d
commit 5f16387fe2
1 changed files with 4 additions and 2 deletions

View File

@ -281,10 +281,12 @@ const répartition = (ficheDePaie: FicheDePaie): Répartition => {
rawRépartition[branche] = {
partPatronale:
rawRépartition[branche].partPatronale +
(CSG.montant.partPatronale * REPARTITION_CSG[branche]) / 100,
(CSG.montant.partPatronale * (REPARTITION_CSG[branche] / (9.2 / 100))) /
100,
partSalariale:
rawRépartition[branche].partSalariale +
(CSG.montant.partSalariale * REPARTITION_CSG[branche]) / 100
(CSG.montant.partSalariale * (REPARTITION_CSG[branche] / (9.2 / 100))) /
100
}
}
return {