Skip to content

Commit

Permalink
fix: reviews
Browse files Browse the repository at this point in the history
  • Loading branch information
jonat75 committed Oct 1, 2024
1 parent 0750860 commit 7ea3e14
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export const prepareDataWithExistingDeclaration = async (
const company = result.data;

const isClosed = isCompanyClosed(company, year);

console.log("isClosed", isClosed);
if (isClosed) throw new Error(CLOSED_COMPANY_ERROR);

const countyCode = company.firstMatchingEtablissement?.codeCommuneEtablissement
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ const EcartsCadres = () => {
temps, qui sont habilités à prendre des décisions de façon largement autonome et qui perçoivent une
rémunération se situant dans les niveaux les plus élevés des systèmes de rémunération pratiqués dans leur
entreprise ou établissement (
<a rel="nofollow" href="https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000006902439/">
<a
rel="nofollow"
href="https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000006902439/"
target="_blank"
>
Article L3111-2
</a>
).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,16 @@ const RepresentationEquilibree = () => (
desc={
<>
<p>
Pour consulter l'aide du service d'identification MonComptePro (comment s'identifier, comment
rattacher une nouvelle entreprise à son compte, comment contacter le support, etc.),{" "}
Pour consulter l'aide du service d'identification <strong>MonComptePro</strong> (comment
s'identifier, comment rattacher une nouvelle entreprise à son compte, comment contacter le support,
etc.),{" "}
<Link href={"/aide-moncomptepro"} target="_blank">
cliquez ici
</Link>
</p>

<p>
Pour consulter la FAQ sur le site internet du ministère chargé du travail,{" "}
Pour consulter la <strong>FAQ</strong> sur le site internet du ministère chargé du travail,{" "}
<Link
href={
"https://travail-emploi.gouv.fr/droit-du-travail/egalite-professionnelle-discrimination-et-harcelement/representation-equilibree-f-h-dans-les-postes-de-direction-des-grandes/"
Expand All @@ -96,7 +97,7 @@ const RepresentationEquilibree = () => (
</Link>
</p>
<p>
Pour contacter le référent égalité professionnelle au sein de votre DREETS,{" "}
Pour contacter le <strong>référent égalité professionnelle</strong> au sein de votre DREETS,{" "}
<Link
href={"https://egapro.travail.gouv.fr/apiv2/public/referents_egalite_professionnelle.xlsx"}
target="_blank"
Expand Down
6 changes: 4 additions & 2 deletions packages/app/src/common/core-domain/helpers/entreprise.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,11 @@ export const getAdditionalMeta = (company: Entreprise) => {
* @param year year of indicators
*/
export const isCompanyClosed = (company: Entreprise, year: number) => {
if (!company.dateCessation) return false;
const limitForClosedCompanies = new Date(year + 1, 2, 1);
const closingDate = company.dateCessation;
const closingDate = new Date(company.dateCessation);
closingDate.setHours(0);

// User can't declare if company is closed before 1st of March of the next year.
return closingDate && new Date(closingDate) < limitForClosedCompanies;
return closingDate && closingDate <= limitForClosedCompanies;
};

0 comments on commit 7ea3e14

Please sign in to comment.