mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
Merge branch '117-repair-queries-on-homepage-widget' into 'master'
[homepage widget] repair my unread notification list with actions and evaluations documents See merge request Chill-Projet/chill-bundles!578
This commit is contained in:
commit
8f39d0320c
5
.changes/unreleased/Fixed-20230713-100525.yaml
Normal file
5
.changes/unreleased/Fixed-20230713-100525.yaml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
kind: Fixed
|
||||||
|
body: Repair my unread notification list with actions and evaluations documents
|
||||||
|
time: 2023-07-13T10:05:25.724155083+02:00
|
||||||
|
custom:
|
||||||
|
Issue: "117"
|
@ -46,8 +46,7 @@ class AccompanyingCourseDocumentWorkflowHandler implements EntityWorkflowHandler
|
|||||||
|
|
||||||
public function getEntityData(EntityWorkflow $entityWorkflow, array $options = []): array
|
public function getEntityData(EntityWorkflow $entityWorkflow, array $options = []): array
|
||||||
{
|
{
|
||||||
$course = $this->getRelatedEntity($entityWorkflow)
|
$course = $this->getRelatedEntity($entityWorkflow)?->getCourse();
|
||||||
->getCourse();
|
|
||||||
$persons = [];
|
$persons = [];
|
||||||
|
|
||||||
if (null !== $course) {
|
if (null !== $course) {
|
||||||
|
@ -66,6 +66,10 @@ export default {
|
|||||||
return appMessages.fr.the_activity;
|
return appMessages.fr.the_activity;
|
||||||
case 'Chill\\PersonBundle\\Entity\\AccompanyingPeriod':
|
case 'Chill\\PersonBundle\\Entity\\AccompanyingPeriod':
|
||||||
return appMessages.fr.the_course;
|
return appMessages.fr.the_course;
|
||||||
|
case 'Chill\\PersonBundle\\Entity\\AccompanyingPeriod\\AccompanyingPeriodWork':
|
||||||
|
return appMessages.fr.the_action;
|
||||||
|
case 'Chill\\PersonBundle\\Entity\\AccompanyingPeriod\\AccompanyingPeriodWorkEvaluationDocument':
|
||||||
|
return appMessages.fr.the_evaluation_document;
|
||||||
case 'Chill\\MainBundle\\Entity\\Workflow\\EntityWorkflow':
|
case 'Chill\\MainBundle\\Entity\\Workflow\\EntityWorkflow':
|
||||||
return appMessages.fr.the_workflow;
|
return appMessages.fr.the_workflow;
|
||||||
default:
|
default:
|
||||||
@ -78,6 +82,10 @@ export default {
|
|||||||
return `/fr/activity/${n.relatedEntityId}/show`
|
return `/fr/activity/${n.relatedEntityId}/show`
|
||||||
case 'Chill\\PersonBundle\\Entity\\AccompanyingPeriod':
|
case 'Chill\\PersonBundle\\Entity\\AccompanyingPeriod':
|
||||||
return `/fr/parcours/${n.relatedEntityId}`
|
return `/fr/parcours/${n.relatedEntityId}`
|
||||||
|
case 'Chill\\PersonBundle\\Entity\\AccompanyingPeriod\\AccompanyingPeriodWork':
|
||||||
|
return `/fr/person/accompanying-period/work/${n.relatedEntityId}/show`
|
||||||
|
case 'Chill\\PersonBundle\\Entity\\AccompanyingPeriod\\AccompanyingPeriodWorkEvaluationDocument':
|
||||||
|
return `/fr/person/accompanying-period/work/evaluation/document/${n.relatedEntityId}/show`
|
||||||
case 'Chill\\MainBundle\\Entity\\Workflow\\EntityWorkflow':
|
case 'Chill\\MainBundle\\Entity\\Workflow\\EntityWorkflow':
|
||||||
return `/fr/main/workflow/${n.relatedEntityId}/show`
|
return `/fr/main/workflow/${n.relatedEntityId}/show`
|
||||||
default:
|
default:
|
||||||
|
@ -46,6 +46,7 @@ const appMessages = {
|
|||||||
the_course: "le parcours",
|
the_course: "le parcours",
|
||||||
the_action: "l'action",
|
the_action: "l'action",
|
||||||
the_evaluation: "l'évaluation",
|
the_evaluation: "l'évaluation",
|
||||||
|
the_evaluation_document: "le document",
|
||||||
the_task: "la tâche",
|
the_task: "la tâche",
|
||||||
the_workflow: "le workflow",
|
the_workflow: "le workflow",
|
||||||
StartDate: "Date d'ouverture",
|
StartDate: "Date d'ouverture",
|
||||||
|
@ -0,0 +1,46 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Chill is a software for social workers
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view
|
||||||
|
* the LICENSE file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Chill\PersonBundle\Controller;
|
||||||
|
|
||||||
|
use Chill\PersonBundle\Entity\AccompanyingPeriod\AccompanyingPeriodWorkEvaluationDocument;
|
||||||
|
use Chill\PersonBundle\Security\Authorization\AccompanyingPeriodWorkVoter;
|
||||||
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
||||||
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
|
use Symfony\Component\Routing\Annotation\Route;
|
||||||
|
use Symfony\Component\Security\Core\Security;
|
||||||
|
|
||||||
|
class AccompanyingCourseWorkEvaluationDocumentController extends AbstractController
|
||||||
|
{
|
||||||
|
public function __construct(private Security $security)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Route(
|
||||||
|
* "{_locale}/person/accompanying-period/work/evaluation/document/{id}/show",
|
||||||
|
* name="chill_person_accompanying_period_work_evaluation_document_show",
|
||||||
|
* methods={"GET"}
|
||||||
|
* )
|
||||||
|
*/
|
||||||
|
public function showAccompanyingCourseWork(AccompanyingPeriodWorkEvaluationDocument $document): Response
|
||||||
|
{
|
||||||
|
$work = $document->getAccompanyingPeriodWorkEvaluation()->getAccompanyingPeriodWork();
|
||||||
|
|
||||||
|
return $this->redirectToRoute(
|
||||||
|
$this->security->isGranted(AccompanyingPeriodWorkVoter::UPDATE, $work) ?
|
||||||
|
'chill_person_accompanying_period_work_edit' : 'chill_person_accompanying_period_work_show',
|
||||||
|
[
|
||||||
|
'id' => $work->getId()
|
||||||
|
]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@ -47,8 +47,7 @@ class AccompanyingPeriodWorkWorkflowHandler implements EntityWorkflowHandlerInte
|
|||||||
public function getEntityData(EntityWorkflow $entityWorkflow, array $options = []): array
|
public function getEntityData(EntityWorkflow $entityWorkflow, array $options = []): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'persons' => $this->getRelatedEntity($entityWorkflow)
|
'persons' => $this->getRelatedEntity($entityWorkflow)?->getPersons() ?? [],
|
||||||
->getPersons(),
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user