Skip to content

Commit

Permalink
fix: une personne doit être suivie par au moins une équipe (#1851)
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudambro authored Feb 1, 2024
1 parent 7e3491c commit 5932b49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions dashboard/src/scenes/person/CreatePerson.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
1 change: 1 addition & 0 deletions dashboard/src/scenes/person/components/EditModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)');
Expand Down

0 comments on commit 5932b49

Please sign in to comment.