only prefill agents traitants of action if parcours has a referrer, otherwise null

This commit is contained in:
Julie Lenaerts 2022-06-13 17:59:29 +02:00
parent 4719a74307
commit 0943366d39
2 changed files with 4 additions and 2 deletions

View File

@ -16,6 +16,7 @@ and this project adheres to
* [person-thirdparty]: fix quick-add of names that consist of multiple parts (eg. De Vlieger) within onthefly modal person/thirdparty * [person-thirdparty]: fix quick-add of names that consist of multiple parts (eg. De Vlieger) within onthefly modal person/thirdparty
* [search]: Order of birthdate fields changed in advanced search to avoid confusion. * [search]: Order of birthdate fields changed in advanced search to avoid confusion.
* [workflow]: Constraint added to workflow (https://gitlab.com/champs-libres/departement-de-la-vendee/accent-suivi-developpement/-/issues/675) * [workflow]: Constraint added to workflow (https://gitlab.com/champs-libres/departement-de-la-vendee/accent-suivi-developpement/-/issues/675)
* [action]: Agents traitants should be prefilled with referrer of the parcours or left empty if there is no referrer (https://gitlab.com/champs-libres/departement-de-la-vendee/accent-suivi-developpement/-/issues/696)
## Test releases ## Test releases

View File

@ -26,8 +26,9 @@ class AccompanyingPeriodWorkEventListener
public function prePersistAccompanyingPeriodWork(AccompanyingPeriodWork $work): void public function prePersistAccompanyingPeriodWork(AccompanyingPeriodWork $work): void
{ {
if ($this->security->getUser() instanceof User) { $referrer = $work->getAccompanyingPeriod()->getUser();
$work->addReferrer($this->security->getUser()); if (null !== $referrer) {
$work->addReferrer($referrer);
} }
} }
} }