👽 Après la création d'entreprise

pull/418/head
Mael 2018-11-05 11:13:27 +00:00 committed by Johan Girod
parent 9efb98e3f1
commit de56f4205c
2 changed files with 72 additions and 26 deletions

View File

@ -307,3 +307,24 @@ trouver:
Entrez le nom de votre société: Type your company name
Nous n'avons rien trouvé: We didn't find any matching registered company.
Recherche en cours...: Searching...
après:
titre: After registration
entreprise: company
intro: Once your <2>{{companyStatusChoice}}</2> has been successfully registered, you'll have access to the following
siret:
titre: The Siret number
description: The Siren number <1>identifies your company</1> while the Siret number identifies each place of business operated by the same company. The Siret is composed by the Siren followed by the establishment number.
ape:
titre: The APE code
description: The APE code corresponds to the <1>business sector</1> of your company. The APE classifies your companys main operations in relation to the French business nomenclature system (« NAF » code). It also determines the applicable collective agreement, and hints at the industrial accident rate of contribution that the company will have to pay for each hire.
kbis:
titre: The Kbis
description:
1: It is the only official document attesting to <1>the legal existence of a commercial enterprise</1>. In most cases, to be opposable and authentic for administrative procedures, the extract must be less than 3 months old.
2: This document is generally requested when applying for a public tender, opening a professional bank account, purchasing professional equipment from distributors, etc.
actions:
retour: Creation checklist
avance: Go to social security

View File

@ -1,28 +1,42 @@
/* @flow */
import { ScrollToTop } from 'Components/utils/Scroll'
import React from 'react'
import { React, T } from 'Components'
import { connect } from 'react-redux'
import { Link } from 'react-router-dom'
import Animate from 'Ui/animate'
import siret from './siret.jpg'
import { translate } from 'react-i18next'
type Props = {
companyStatusChoice: string
}
const AfterRegistration = ({ companyStatusChoice }: Props) => (
const AfterRegistration = ({ t, companyStatusChoice }: Props) => (
<Animate.fromBottom>
<ScrollToTop />
<h1>After registration</h1>
<h1>
<T k="après.titre">Après la création</T>
</h1>
<p>
Once your {companyStatusChoice || 'company'} have been successfully
registered, you'll have access to the following:
<T k="après.intro">
Une fois que votre{' '}
{{
companyStatusChoice:
companyStatusChoice || t('après.entreprise', 'entreprise')
}}{' '}
aura été créée, vous recevrez les informations suivantes :
</T>
</p>
<h2>The Siret number</h2>
<h2>
<T k="après.siret.titre">Le numéro Siret</T>
</h2>
<p>
The Siren number <strong>identifies your company</strong> while the Siret
number identifies each place of business operated by the same company. The
Siret is composed by the Siren followed by the Establishment number.
<T k="après.siret.description">
Le numéro Sirent <strong>est l'identifiant de votre entreprise</strong>{' '}
tandis que le numéro Siret identifie chaque établissement de la même
entreprise. Le Siret commence par le Siren, auquel on ajoute le numéro
d'établissement.
</T>
<br />
<img
src={siret}
@ -30,36 +44,47 @@ const AfterRegistration = ({ companyStatusChoice }: Props) => (
style={{ maxWidth: '100%' }}
/>
</p>
<h2>The APE code</h2>
<h2>
<T k="après.ape.titre">Le code APE</T>
</h2>
<p>
The APE code for the <strong>business sector</strong> to which your
company belong. The APE is used to classify your companys main operations
in relation to the French business nomenclature system (« NAF » code). It
also determines the applicable collective agreement as well as the
industrial accident rate in the field to which you or your company belong.
<T k="après.ape.description">
Le code APE correspond au <strong>secteur</strong> de votre entreprise.
Il classifie la branche principale de votre entreprise dans la
nomenclature nationale d'activités françaises (code « NAF »). Il
détermine aussi la convention collective applicable à l'entreprise, et
en partie le taux de la cotisation accident du travail et maladies
professionnelles qu'elle devra payer.
</T>
</p>
{companyStatusChoice !== 'microentreprise' && (
<>
<h2>The Kbis</h2>
<h2>
<T k="après.kbis.titre">The Kbis</T>
</h2>
<p>
It is the only official document attesting to{' '}
<strong>the legal existence of a commercial enterprise</strong>. In
most cases, to be opposable and authentic for administrative
procedures, the extract must be less than 3 months old.{' '}
<T k="après.kbis.description.1">
C'est le seul document officiel qui atteste de
<strong>l'existence légale d'une entreprise commerciale</strong>. Le
plus souvent, pour être considéré par les procédures
administratives, il doit dater de moins de 3 mois.
</T>
</p>
<p>
This document is generally requested when applying for a public
tender, opening a professional bank account, purchasing professional
equipment from distributors, etc.
<T k="après.kbis.description.2">
Ce document est généralement demandé lors de la candidature à un
appel d'offre public, de l'ouverture d'un compte bancaire, d'achats
d'équipement professionnel auprès de fournisseurs, etc.
</T>
</p>
</>
)}
<p style={{ display: 'flex', justifyContent: 'space-between' }}>
<Link to="/company" className="ui__ skip-button left">
Creation checklist
<T k="après.actions.retour">Démarche de création</T>
</Link>
<Link to="/social-security" className="ui__ skip-button">
Go to social security
<T k="après.actions.avance">Sécu et coût d'embauche </T>
</Link>
</p>
</Animate.fromBottom>
@ -67,4 +92,4 @@ const AfterRegistration = ({ companyStatusChoice }: Props) => (
export default connect(state => ({
companyStatusChoice: state.inFranceApp.companyStatusChoice
}))(AfterRegistration)
}))(translate()(AfterRegistration))