feat: ajoute une colonne régularisation au simulateur RGCP mois par mois
parent
09e7426056
commit
464531e8e2
|
@ -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>
|
||||
)
|
||||
})}
|
||||
|
|
Loading…
Reference in New Issue