Fixed: show list of workflow, event if some social action associated to a workflow are deleted

This commit is contained in:
2022-12-14 13:37:49 +01:00
parent 2dec6a017d
commit 58ede06dfe
3 changed files with 27 additions and 16 deletions

View File

@@ -56,6 +56,10 @@ class AccompanyingPeriodWorkWorkflowHandler implements EntityWorkflowHandlerInte
{
$work = $this->getRelatedEntity($entityWorkflow);
if (null === $work) {
return $this->translator->trans('workflow.SocialAction deleted');
}
return
$this->translator->trans('workflow.Work (n°%w%)', ['%w%' => $entityWorkflow->getRelatedEntityId()])
. ' - ' . $this->translatableStringHelper->localize($work->getSocialAction()->getTitle());