diff --git a/packages/app/src/app/(default)/index-egapro/declaration/commencer/CommencerForm.tsx b/packages/app/src/app/(default)/index-egapro/declaration/commencer/CommencerForm.tsx index 115fcfbd4..6bc316ac0 100644 --- a/packages/app/src/app/(default)/index-egapro/declaration/commencer/CommencerForm.tsx +++ b/packages/app/src/app/(default)/index-egapro/declaration/commencer/CommencerForm.tsx @@ -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 diff --git a/packages/app/src/app/(default)/representation-equilibree/(funnel)/ecarts-cadres/page.tsx b/packages/app/src/app/(default)/representation-equilibree/(funnel)/ecarts-cadres/page.tsx index ad3074206..c66e96e8f 100644 --- a/packages/app/src/app/(default)/representation-equilibree/(funnel)/ecarts-cadres/page.tsx +++ b/packages/app/src/app/(default)/representation-equilibree/(funnel)/ecarts-cadres/page.tsx @@ -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 ( - + Article L3111-2 ). diff --git a/packages/app/src/app/(default)/representation-equilibree/page.tsx b/packages/app/src/app/(default)/representation-equilibree/page.tsx index 7e86eab63..a20e0a8a7 100644 --- a/packages/app/src/app/(default)/representation-equilibree/page.tsx +++ b/packages/app/src/app/(default)/representation-equilibree/page.tsx @@ -77,15 +77,16 @@ const RepresentationEquilibree = () => ( desc={ <>
- 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 MonComptePro (comment + s'identifier, comment rattacher une nouvelle entreprise à son compte, comment contacter le support, + etc.),{" "} cliquez ici
- Pour consulter la FAQ sur le site internet du ministère chargé du travail,{" "} + Pour consulter la FAQ sur le site internet du ministère chargé du travail,{" "} (
- Pour contacter le référent égalité professionnelle au sein de votre DREETS,{" "} + Pour contacter le référent égalité professionnelle au sein de votre DREETS,{" "} { * @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; };