MAJ des liens vers les modèles de statuts BPI

pull/618/head
Maxime Quandalle 2019-08-19 10:49:08 +02:00
parent b2396e912f
commit 7f57ad6dd6
No known key found for this signature in database
GPG Key ID: 428641C03D29CA10
1 changed files with 15 additions and 6 deletions

View File

@ -513,9 +513,18 @@ export default compose(
)
)(CreateCompany)
let StatutsExample = ({ companyStatus }) => (
<a href="http://media.apce.com/file/72/3/statuts_sarl_(aout_2014).37032.72723.doc">
<T k="entreprise.tâches.statuts.exemple">Exemple de statuts pour votre</T>
{companyStatus}
</a>
)
let StatutsExample = ({ companyStatus }) => {
const links = {
SARL: 'https://bpifrance-creation.fr/file/109068/download?token=rmc93Ve3',
EURL: 'https://bpifrance-creation.fr/file/109070/download?token=Ul-rT6Z0'
}
if (Object.keys(links).indexOf(companyStatus) === -1) return null
return (
<a target="_blank" href={links[companyStatus]}>
<T k="entreprise.tâches.statuts.exemple">Exemple de statuts pour votre</T>{' '}
{companyStatus}
</a>
)
}