51 lines
1.8 KiB
PHP
51 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Controller\Administrative\Disposition;
|
|
|
|
use App\Entity\Disposition;
|
|
use App\Form\SpecialAgreementsType;
|
|
use App\Htmx\HxRedirectResponse;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use Psr\Log\LoggerInterface;
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\Routing\Attribute\Route;
|
|
use Symfony\Component\Security\Http\Attribute\IsGranted;
|
|
|
|
class SpecialAgreementsController extends AbstractController
|
|
{
|
|
public function __construct(
|
|
private readonly EntityManagerInterface $entityManager,
|
|
private readonly LoggerInterface $logger,
|
|
) {
|
|
}
|
|
|
|
#[Route('/administrative/disposition/special-agreements/{uuid}', name: 'app_administrative_disposition_special_agreements')]
|
|
#[IsGranted('ROLE_ADMINISTRATIVE')]
|
|
public function index(Disposition $disposition, Request $request): Response
|
|
{
|
|
$form = $this->createForm(SpecialAgreementsType::class, $disposition, ['hx_post' => $request->getUri()]);
|
|
$form->handleRequest($request);
|
|
|
|
if ($form->isSubmitted() && $form->isValid()) {
|
|
$this->entityManager->flush();
|
|
|
|
$this->logger->info('Edit special agreements', [
|
|
'disposition' => $disposition->getUuid(),
|
|
'special_agreements' => $disposition->getSpecialAgreements(),
|
|
]);
|
|
|
|
return new HxRedirectResponse($this->generateUrl('app_administrative_assignment_detail', [
|
|
'uuid' => $disposition->getAssignment()->getUuid(),
|
|
'r' => $request->query->get('r'),
|
|
]));
|
|
}
|
|
|
|
return $this->render('administrative/disposition/modal_special_agreements.html.twig', [
|
|
'disposition' => $disposition,
|
|
'form' => $form->createView(),
|
|
]);
|
|
}
|
|
}
|