mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-07-18 14:56:13 +00:00
Fixes in template parameters + remove budget elements when removing event
This commit is contained in:
parent
471e17bbf9
commit
0983140261
@ -78,6 +78,7 @@ final class EventController extends AbstractController
|
|||||||
|
|
||||||
/** @var array $participations */
|
/** @var array $participations */
|
||||||
$participations = $event->getParticipations();
|
$participations = $event->getParticipations();
|
||||||
|
$budgetElements = $event->getBudgetElements();
|
||||||
|
|
||||||
$form = $this->createDeleteForm($event_id);
|
$form = $this->createDeleteForm($event_id);
|
||||||
|
|
||||||
@ -89,6 +90,10 @@ final class EventController extends AbstractController
|
|||||||
$em->remove($participation);
|
$em->remove($participation);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
foreach ($budgetElements as $e) {
|
||||||
|
$em->remove($e);
|
||||||
|
}
|
||||||
|
|
||||||
$em->remove($event);
|
$em->remove($event);
|
||||||
$em->flush();
|
$em->flush();
|
||||||
|
|
||||||
|
@ -228,7 +228,7 @@ final class ParticipationController extends AbstractController
|
|||||||
}
|
}
|
||||||
|
|
||||||
return $this->redirectToRoute('chill_event__event_show', [
|
return $this->redirectToRoute('chill_event__event_show', [
|
||||||
'event_id' => $participation->getEvent()->getId(),
|
'id' => $participation->getEvent()->getId(),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -242,7 +242,7 @@ final class ParticipationController extends AbstractController
|
|||||||
/**
|
/**
|
||||||
* @param int $participation_id
|
* @param int $participation_id
|
||||||
*/
|
*/
|
||||||
#[\Symfony\Component\Routing\Annotation\Route(path: '/{_locale}/event/participation/{participation_id}/delete', name: 'chill_event_participation_delete', requirements: ['participation_id' => '\d+'], methods: ['GET', 'DELETE'])]
|
#[\Symfony\Component\Routing\Annotation\Route(path: '/{_locale}/event/participation/{participation_id}/delete', name: 'chill_event_participation_delete', requirements: ['participation_id' => '\d+'])]
|
||||||
public function deleteAction($participation_id, Request $request): Response|\Symfony\Component\HttpFoundation\RedirectResponse
|
public function deleteAction($participation_id, Request $request): Response|\Symfony\Component\HttpFoundation\RedirectResponse
|
||||||
{
|
{
|
||||||
$em = $this->managerRegistry->getManager();
|
$em = $this->managerRegistry->getManager();
|
||||||
@ -273,7 +273,7 @@ final class ParticipationController extends AbstractController
|
|||||||
);
|
);
|
||||||
|
|
||||||
return $this->redirectToRoute('chill_event__event_show', [
|
return $this->redirectToRoute('chill_event__event_show', [
|
||||||
'event_id' => $event->getId(),
|
'id' => $event->getId(),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -442,7 +442,7 @@ final class ParticipationController extends AbstractController
|
|||||||
));
|
));
|
||||||
|
|
||||||
return $this->redirectToRoute('chill_event__event_show', [
|
return $this->redirectToRoute('chill_event__event_show', [
|
||||||
'event_id' => $participation->getEvent()->getId(),
|
'id' => $participation->getEvent()->getId(),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
'title' : 'Delete event'|trans,
|
'title' : 'Delete event'|trans,
|
||||||
'confirm_question' : 'Are you sure you want to remove that event ?'|trans,
|
'confirm_question' : 'Are you sure you want to remove that event ?'|trans,
|
||||||
'cancel_route' : activeRouteKey,
|
'cancel_route' : activeRouteKey,
|
||||||
'cancel_parameters' : { 'event_id' : event_id },
|
'cancel_parameters' : { 'id' : id },
|
||||||
'form' : delete_form
|
'form' : delete_form
|
||||||
}
|
}
|
||||||
) }}
|
) }}
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
<ul class="record_actions">
|
<ul class="record_actions">
|
||||||
<li>
|
<li>
|
||||||
{# {% if is_granted('CHILL_EVENT_SEE_DETAILS', event) %} #}
|
{# {% if is_granted('CHILL_EVENT_SEE_DETAILS', event) %} #}
|
||||||
<a href="{{ path('chill_event__event_show', { 'event_id' : event.id } ) }}" class="btn btn-view">
|
<a href="{{ path('chill_event__event_show', { 'id' : event.id } ) }}" class="btn btn-view">
|
||||||
{{ 'See'|trans }}
|
{{ 'See'|trans }}
|
||||||
</a>
|
</a>
|
||||||
{# {% endif %} #}
|
{# {% endif %} #}
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
'title' : 'Remove participation'|trans,
|
'title' : 'Remove participation'|trans,
|
||||||
'confirm_question' : 'Are you sure you want to remove that participation ?'|trans,
|
'confirm_question' : 'Are you sure you want to remove that participation ?'|trans,
|
||||||
'cancel_route' : activeRouteKey,
|
'cancel_route' : activeRouteKey,
|
||||||
'cancel_parameters' : { 'event_id' : event_id },
|
'cancel_parameters' : { 'id' : event_id },
|
||||||
'form' : delete_form
|
'form' : delete_form
|
||||||
}
|
}
|
||||||
) }}
|
) }}
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
{% set returnPath = app.request.get('return_path') %}
|
{% set returnPath = app.request.get('return_path') %}
|
||||||
{% set returnLabel = app.request.get('return_label') %}
|
{% set returnLabel = app.request.get('return_label') %}
|
||||||
|
|
||||||
<a href="{{ returnPath |default( path('chill_event__event_show', { 'event_id' : participation.event.id } )) }}" class="btn btn-cancel">
|
<a href="{{ returnPath |default( path('chill_event__event_show', { 'id' : participation.event.id } )) }}" class="btn btn-cancel">
|
||||||
{{ returnLabel |default('Back to the event'|trans) }}
|
{{ returnLabel |default('Back to the event'|trans) }}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
|
|
||||||
<ul class="record_actions sticky-form-buttons">
|
<ul class="record_actions sticky-form-buttons">
|
||||||
<li class="cancel">
|
<li class="cancel">
|
||||||
<a href="{{ path('chill_event__event_show', { 'event_id' : participation.event.id } ) }}" class="btn btn-cancel">
|
<a href="{{ path('chill_event__event_show', { 'id' : participation.event.id } ) }}" class="btn btn-cancel">
|
||||||
{{ 'Back to the event'|trans }}
|
{{ 'Back to the event'|trans }}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user