feat: ajoute une colonne régularisation au simulateur RGCP mois par mois

pull/3230/head
Alice Dahan 2024-11-15 16:57:31 +01:00 committed by liliced
parent 09e7426056
commit 464531e8e2
1 changed files with 14 additions and 5 deletions

View File

@ -90,6 +90,7 @@ export default function RéductionGénéraleMoisParMois({
{t('Réduction générale')}
<ExplicableRule dottedName={réductionGénéraleDottedName} light />
</th>
<th scope="col">{t('Régularisaton')}</th>
</tr>
</thead>
<tbody>
@ -137,15 +138,12 @@ export default function RéductionGénéraleMoisParMois({
'_'
)}-${monthName}`}
>
{data[monthIndex].réductionGénérale ||
data[monthIndex].régularisation ? (
{data[monthIndex].réductionGénérale ? (
<Tooltip tooltip={tooltip} hasArrow={true}>
<StyledDiv>
{formatValue(
{
nodeValue:
data[monthIndex].réductionGénérale +
data[monthIndex].régularisation,
nodeValue: data[monthIndex].réductionGénérale,
},
{
displayedUnit,
@ -177,6 +175,17 @@ export default function RéductionGénéraleMoisParMois({
</StyledDiv>
)}
</td>
<td>
{formatValue(
{
nodeValue: data[monthIndex].régularisation,
},
{
displayedUnit,
language,
}
)}
</td>
</tr>
)
})}