diff --git a/dashboard/src/scenes/person/CreatePerson.js b/dashboard/src/scenes/person/CreatePerson.js index fb57bce29..a685c7655 100644 --- a/dashboard/src/scenes/person/CreatePerson.js +++ b/dashboard/src/scenes/person/CreatePerson.js @@ -41,6 +41,7 @@ const CreatePerson = ({ refreshable }) => { initialValues={{ name: '', assignedTeams: [currentTeam?._id] }} onSubmit={async (body, actions) => { if (!body.name?.trim()?.length) return toast.error('Une personne doit avoir un nom'); + if (!body.assignedTeams?.length) return toast.error('Une personne doit être suivie par au moins une équipe'); const existingPerson = persons.find((p) => p.name === body.name); if (existingPerson) return toast.error('Une personne existe déjà à ce nom'); body.followedSince = dayjs(); diff --git a/dashboard/src/scenes/person/components/EditModal.js b/dashboard/src/scenes/person/components/EditModal.js index a0d460c37..2dfc64cac 100644 --- a/dashboard/src/scenes/person/components/EditModal.js +++ b/dashboard/src/scenes/person/components/EditModal.js @@ -58,6 +58,7 @@ export default function EditModal({ person, selectedPanel, onClose, isMedicalFil const existingPerson = persons.find((p) => p.name === body.name && p._id !== person._id); if (existingPerson) return toast.error('Une personne existe déjà à ce nom'); if (!body.followedSince) body.followedSince = person.createdAt; + if (!body.assignedTeams?.length) return toast.error('Une personne doit être suivie par au moins une équipe'); if (outOfBoundariesDate(body.followedSince)) return toast.error('La date de suivi est hors limites (entre 1900 et 2100)'); if (body.birthdate && outOfBoundariesDate(body.birthdate)) return toast.error('La date de naissance est hors limites (entre 1900 et 2100)');