Add info
parent
e4622bd3ff
commit
1a51d05369
|
@ -12,7 +12,7 @@ import { Loader } from '@/design-system/icons/Loader'
|
|||
import { Spacing } from '@/design-system/layout'
|
||||
import { H1 } from '@/design-system/typography/heading'
|
||||
import { Body, Intro } from '@/design-system/typography/paragraphs'
|
||||
import { DeepWriteable } from '@/pages/Simulateurs/cout-creation-entreprise/config'
|
||||
import { DeepWriteable } from '@/pages/Simulateurs/cout-creation-entreprise/_config'
|
||||
import { situationSelector } from '@/selectors/simulationSelectors'
|
||||
|
||||
import { TrackChapter } from '../ATInternetTracking'
|
||||
|
|
|
@ -22,6 +22,8 @@ export default function SimulateurWarning({
|
|||
.nodeValue?.toString()
|
||||
.slice(-4) as Evaluation<number> | undefined
|
||||
|
||||
console.log(simulateur)
|
||||
|
||||
return (
|
||||
<Warning
|
||||
localStorageKey={'app::simulateurs:warning-folded:v1:' + simulateur}
|
||||
|
@ -111,6 +113,24 @@ export default function SimulateurWarning({
|
|||
</Trans>
|
||||
</StyledLi>
|
||||
)}
|
||||
{simulateur === 'coût-création-entreprise' && (
|
||||
<>
|
||||
<StyledLi>
|
||||
<Trans i18nKey="simulateurs.warning.coût-création-entreprise.greffe">
|
||||
Des frais de greffe peuvent être facturés en raison de documents
|
||||
manquants ou incorrects.
|
||||
</Trans>
|
||||
</StyledLi>
|
||||
<StyledLi>
|
||||
<Trans i18nKey="simulateurs.warning.coût-création-entreprise.JAL">
|
||||
Des frais de publication dans le Journal Officiel des Annonces
|
||||
Légales (qui sont dépendent de la taille de l'annonce) peuvent
|
||||
être requis lors de la création ou modification de votre
|
||||
entreprise.
|
||||
</Trans>
|
||||
</StyledLi>
|
||||
</>
|
||||
)}
|
||||
</Ul>
|
||||
</Warning>
|
||||
)
|
||||
|
|
|
@ -47,7 +47,7 @@ export const configCoûtCréationEntreprise = function <
|
|||
// 'unité par défaut': '€/mois',
|
||||
situation: {},
|
||||
},
|
||||
lazyComponent: lazy(async () => await import('./CoutCreationEntreprise')),
|
||||
lazyComponent: lazy(async () => await import('.')),
|
||||
|
||||
// Remove this "as const" when we upgrade to typescript v5:
|
||||
} as const,
|
|
@ -1,4 +1,5 @@
|
|||
import { Condition } from '@/components/EngineValue'
|
||||
import SimulateurWarning from '@/components/SimulateurWarning'
|
||||
import Simulation, {
|
||||
SimulationGoal,
|
||||
SimulationGoals,
|
||||
|
@ -45,6 +46,7 @@ const CoutCreationEntreprise = () => {
|
|||
</Condition>
|
||||
}
|
||||
>
|
||||
<SimulateurWarning simulateur="coût-création-entreprise" />
|
||||
<SimulationGoals legend="Simulateur du coût de création d'une entreprise">
|
||||
<SimulationGoal
|
||||
dottedName="entreprise . coût formalités . création"
|
|
@ -4,7 +4,7 @@ import { PageConfig } from './configs/types'
|
|||
import {
|
||||
Immutable,
|
||||
configCoûtCréationEntreprise,
|
||||
} from './cout-creation-entreprise/config.js'
|
||||
} from './cout-creation-entreprise/_config.js'
|
||||
import { SimulatorsDataParams } from './metadata'
|
||||
|
||||
/**
|
||||
|
|
|
@ -55,7 +55,7 @@ import {
|
|||
} from './configs/professionLibérale'
|
||||
import { configSalarié } from './configs/salarié'
|
||||
import { PageConfig } from './configs/types'
|
||||
import { Immutable } from './cout-creation-entreprise/config'
|
||||
import { Immutable } from './cout-creation-entreprise/_config'
|
||||
import AutoEntrepreneurPreview from './images/AutoEntrepreneurPreview.png'
|
||||
import ChômagePartielPreview from './images/ChômagePartielPreview.png'
|
||||
import RémunérationSASUPreview from './images/RémunérationSASUPreview.png'
|
||||
|
|
Loading…
Reference in New Issue