Skip to content

Commit

Permalink
feat: forgotten wording changes (#1823)
Browse files Browse the repository at this point in the history
Closes #1723
Closes #1760
  • Loading branch information
jonat75 authored Nov 13, 2023
1 parent 9a34f5a commit 7ce2634
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const AlertExistingDeclaration = () => {

return (
<Alert
severity="info"
severity="warning"
title={
formData["declaration-existante"].status === "consultation"
? "Cette déclaration a été validée et transmise"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export const RecapDeclaration = ({ déclaration, edit }: Props) => {
content={
<>
<p>
Les indicateurs sont calculés au titre de l’année <strong>{year}</strong>.
Les indicateurs sont calculés au titre de l’année <strong>{year}</strong>
</p>

{déclaration["periode-reference"]?.périodeSuffisante === "oui" ? (
Expand All @@ -118,15 +118,15 @@ export const RecapDeclaration = ({ déclaration, edit }: Props) => {
{déclaration["periode-reference"].effectifTotal && (
<>
<strong>{déclaration["periode-reference"].effectifTotal}</strong> salariés pris en compte pour le
calcul des indicateurs sur la période de référence (en effectif physique).
calcul des indicateurs sur la période de référence (en effectif physique)
</>
)}
</p>
</>
) : (
<p>
Vous ne disposez pas d'une période de référence de 12 mois consécutifs, votre index et vos indicateurs
ne sont pas calculables.
ne sont pas calculables
</p>
)}
</>
Expand All @@ -151,9 +151,9 @@ export const RecapDeclaration = ({ déclaration, edit }: Props) => {
{déclaration.remunerations?.estCalculable === "oui" && déclaration.remunerations?.mode !== "csp" && (
<>
{!déclaration.remunerations?.dateConsultationCSE ? (
<p> Aucun CSE n’est mis en place.</p>
<p> Aucun CSE n’est mis en place</p>
) : (
<p>Le CSE a été consulté le {formatIsoToFr(déclaration.remunerations.dateConsultationCSE)}.</p>
<p>Le CSE a été consulté le {formatIsoToFr(déclaration.remunerations.dateConsultationCSE)}</p>
)}
</>
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ const RecapPage = async ({ params: { siren, year: strYear } }: NextServerPagePro
: "Vous pouvez la modifier, une fois validée et transmise, elle remplacera la déclaration actuelle"
}
className={fr.cx("fr-mb-4w")}
closable
/>
<RecapDeclaration déclaration={déclaration} />

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ export const PromotionsForm = () => {
{estCalculable === "oui" && (
<>
<p>
<strong>Écarts de taux d’augmentations par CSP en %</strong>
<strong>Écarts de taux de promotions par CSP en %</strong>
</p>

<p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const AlertEdition = () => {
if (segment === "commencer") return null;
return (
<Alert
severity="info"
severity="warning"
title="Attention"
className={fr.cx("fr-mb-4w")}
description={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ const RepEqPage = async ({ params: { siren, year: strYear } }: NextServerPagePro
: "Vous pouvez la modifier, une fois validée et transmise, elle remplacera la déclaration actuelle"
}
className={fr.cx("fr-mb-4w")}
closable
/>
)}
</ClientAnimate>
Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/common/dict.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const FIRST_YEAR_REPEQ = 2021 as const;
export const OPMC_OPEN_DURATION_AFTER_EDIT = 2;

/** Need to be set manually because declaration are not opened on Jan 1rst */
export const CURRENT_YEAR = 2023 as const;
export const CURRENT_YEAR = 2022 as const;
/** Need to be set */
export const PUBLIC_CURRENT_YEAR = CURRENT_YEAR;
// export const PUBLIC_CURRENT_YEAR = 2022 as const;
Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/design-system/base/RecapCardCompany.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const RecapCardCompany = ({ company, full, title, edit }: Props) => {
<ClientBodyPortal>
<infoModale.Component title="">
Ces informations sont renseignées automatiquement et ne sont pas modifiables (source : Répertoire Sirene de
l'INSEE).
l'INSEE)
</infoModale.Component>
</ClientBodyPortal>
{edit ? (
Expand Down

0 comments on commit 7ce2634

Please sign in to comment.