From 5932b49c2667af372e0cf2f180892822d5033acc Mon Sep 17 00:00:00 2001 From: Arnaud Ambroselli <31724752+arnaudambro@users.noreply.github.com> Date: Thu, 1 Feb 2024 16:47:43 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20une=20personne=20doit=20=C3=AAtre=20suiv?= =?UTF-8?q?ie=20par=20au=20moins=20une=20=C3=A9quipe=20(#1851)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dashboard/src/scenes/person/CreatePerson.js | 1 + dashboard/src/scenes/person/components/EditModal.js | 1 + 2 files changed, 2 insertions(+) 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)');