🐛 Affiche la retraite Cipav dans tous les cas
parent
84399cdd1d
commit
d166df2423
|
@ -182,13 +182,13 @@ function DroitsRetraite() {
|
|||
</li>
|
||||
<li>
|
||||
Retraite complémentaire :{' '}
|
||||
<Condition expression="entreprise . activité . libérale réglementée">
|
||||
<WhenApplicable dottedName="dirigeant . indépendant . PL . CNAVPL">
|
||||
<em>
|
||||
Ce simulateur ne gère pas les droits acquis de retraite
|
||||
complémentaire pour les professions libérales
|
||||
</em>
|
||||
</Condition>
|
||||
<Condition expression="entreprise . activité . libérale réglementée = non">
|
||||
</WhenApplicable>
|
||||
<WhenNotApplicable dottedName="dirigeant . indépendant . PL . CNAVPL">
|
||||
<strong>
|
||||
<RuleLink dottedName="protection sociale . retraite . complémentaire indépendants . points acquis">
|
||||
<Value
|
||||
|
@ -198,7 +198,7 @@ function DroitsRetraite() {
|
|||
points acquis
|
||||
</RuleLink>
|
||||
</strong>
|
||||
</Condition>
|
||||
</WhenNotApplicable>
|
||||
</li>
|
||||
</ul>
|
||||
</Trans>
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
import RuleLink from 'Components/RuleLink'
|
||||
import Value, { Condition } from 'Components/EngineValue'
|
||||
import Value, {
|
||||
Condition,
|
||||
WhenApplicable,
|
||||
WhenNotApplicable,
|
||||
} from 'Components/EngineValue'
|
||||
import { FromBottom } from 'Components/ui/animate'
|
||||
import Emoji from 'Components/utils/Emoji'
|
||||
import { useEngine } from 'Components/utils/EngineContext'
|
||||
|
@ -24,13 +28,13 @@ export default function InstitutionsPartenaires() {
|
|||
</Trans>
|
||||
</h2>
|
||||
<InstitutionsTable>
|
||||
<Condition expression="entreprise . activité . libérale réglementée = oui">
|
||||
<WhenApplicable dottedName="dirigeant . indépendant . PL . CNAVPL">
|
||||
<CotisationsUrssaf rule="dirigeant . indépendant . PL . cotisations Urssaf" />
|
||||
<CaisseRetraite />
|
||||
</Condition>
|
||||
<Condition expression="entreprise . activité . libérale réglementée = non">
|
||||
</WhenApplicable>
|
||||
<WhenNotApplicable dottedName="dirigeant . indépendant . PL . CNAVPL">
|
||||
<CotisationsUrssaf rule="dirigeant . indépendant . cotisations et contributions" />
|
||||
</Condition>
|
||||
</WhenNotApplicable>
|
||||
<ImpôtsDGFIP />
|
||||
<Condition expression="dirigeant . indépendant . PL . PAMC . participation CPAM > 0">
|
||||
<InstitutionLine>
|
||||
|
|
Loading…
Reference in New Issue