-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add alert messages for news on
welcom
and encounterForm
- R…
…ef gestion-de-projet#2741 gestion-de-projet#2740
- Loading branch information
1 parent
00308f7
commit 5e15084
Showing
3 changed files
with
41 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { ResourceType } from 'types/requestCriterias' | ||
|
||
enum level { | ||
INFO = 'info', | ||
ERROR = 'error', | ||
WARNING = 'warning' | ||
} | ||
|
||
export const infoMessages: { id: number; resourceType?: ResourceType; level: level; message: string }[] = [ | ||
{ | ||
id: 0, | ||
level: level.INFO, | ||
message: | ||
"Suite à l'incident ayant eu lieu début août 2024, la saisie de certaines données de soin a posteriori dans leur application source peut prendre du délai. Elles seront donc manquantes dans Cohort360, et rattrapées au fil de l'eau." | ||
}, | ||
{ | ||
id: 1, | ||
resourceType: ResourceType.ENCOUNTER, | ||
level: level.INFO, | ||
message: | ||
"Le critère de prise en charge se base sur tous les séjours et passages. Les consultations étant des prises en charge non clôturées, elles n'ont pas de date de fin. Indiquer une durée ou une date de fin de prise en charge exclue ainsi les consultations." | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters