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

feat/3221-rgcp-hs-par-mois
Alice Dahan 2024-11-15 16:57:31 +01:00
parent a48c96af61
commit e6557363fc
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>
)
})}