Skip to content

Commit

Permalink
chore: merge with main
Browse files Browse the repository at this point in the history
  • Loading branch information
XavierJp committed Aug 13, 2024
2 parents b3fa246 + c78818d commit 10cbe6f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
7 changes: 3 additions & 4 deletions clients/sirene-insee/siren.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,7 @@ const mapToDomainObject = (

if (periodesUniteLegale && periodesUniteLegale.length > 0) {
siege.siren = siren;
//@ts-ignore
siege.siret = siren + nicSiegeUniteLegale;
siege.siret = (siren + nicSiegeUniteLegale) as Siret;
siege.nic = nicSiegeUniteLegale;
siege.dateCreation = dateDebut;
siege.activitePrincipale = activitePrincipaleUniteLegale;
Expand Down Expand Up @@ -170,8 +169,8 @@ const mapToDomainObject = (
)}`.trim();

const nomComplet = `${denominationUniteLegale || names || 'Nom inconnu'}${
denominationUsuelle ? ` (${denominationUsuelle})` : ''
}${sigleUniteLegale ? ` (${sigleUniteLegale})` : ''}`;
sigleUniteLegale ? ` (${sigleUniteLegale})` : ''
}`;

const defaultUniteLegale = createDefaultUniteLegale(siren);

Expand Down
4 changes: 4 additions & 0 deletions components/administrations/administration-description.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ const AdministrationDescription: React.FC<{
)}
{contact && (
<p>
<a href={`/donnees/sources#${slug}`}>
→ Télécharger ou réutiliser ces données
</a>
<br />
<a rel="noreferrer noopener" target="_blank" href={contact}>
→ Contacter cette{' '}
{estServicePublic ? 'administration' : 'organisation'}
Expand Down
9 changes: 5 additions & 4 deletions components/labels-and-certificates/ess/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import FAQLink from '#components-ui/faq-link';
import { ESSFrance } from '#components/administrations';
import { ESSFrance, INSEE } from '#components/administrations';
import { DataSection } from '#components/section/data-section';
import { TwoColumnTable } from '#components/table/simple';
import { EAdministration } from '#models/administrations/EAdministration';
Expand All @@ -26,15 +26,16 @@ const ESSFAQLink = () => (
const ESSNotFound = () => (
<>
Cette structure <strong>n’apparait pas</strong> dans la liste des
entreprises de <ESSFAQLink /> tenue par <ESSFrance />, alors que sa forme
juridique relève du champs de l’ESS.
entreprises de <ESSFAQLink /> tenue par <ESSFrance />, tandis que l’
<INSEE /> indique qu’elle relève du champ de l’ESS, ce qui est inhabituel.
<p>Il existe plusieurs explications possibles :</p>
<ul>
<li>soit c’est une société commerciale de l’ESS</li>
<li>soit c’est une structure inactive qui a été retirée de la liste</li>
<li>
soit c’est une structure récente qui sera bientôt ajoutée à la liste
</li>
<li>soit c’est une erreur dans la base SIRENE</li>
</ul>
</>
);
Expand All @@ -47,7 +48,7 @@ export const CertificationESSSection = ({
<DataSection
title="ESS - Entreprise Sociale et Solidaire"
id="ess"
sources={[EAdministration.ESSFRANCE]}
sources={[EAdministration.ESSFRANCE, EAdministration.INSEE]}
data={ess}
notFoundInfo={<ESSNotFound />}
>
Expand Down

0 comments on commit 10cbe6f

Please sign in to comment.