some progress

This commit is contained in:
Hesabix 2024-04-27 10:33:41 +00:00
parent 508b82f5e8
commit efba33d10a

View file

@ -21,7 +21,7 @@ class ReportController extends AbstractController
#[Route('/api/report/person/buysell', name: 'app_report_person_buysell')] #[Route('/api/report/person/buysell', name: 'app_report_person_buysell')]
public function app_report_person_buysell(Access $access, Request $request, EntityManagerInterface $entityManagerInterface): JsonResponse public function app_report_person_buysell(Access $access, Request $request, EntityManagerInterface $entityManagerInterface): JsonResponse
{ {
$acc = $access->hasRole('reports'); $acc = $access->hasRole('report');
if (!$acc) { if (!$acc) {
throw $this->createAccessDeniedException(); throw $this->createAccessDeniedException();
} }
@ -94,7 +94,7 @@ class ReportController extends AbstractController
#[Route('/api/report/person/buysell/export/excel', name: 'app_report_person_buysell_export_excell')] #[Route('/api/report/person/buysell/export/excel', name: 'app_report_person_buysell_export_excell')]
public function app_report_person_buysell_export_excell(Provider $provider, Access $access, Request $request, EntityManagerInterface $entityManagerInterface): BinaryFileResponse | JsonResponse | StreamedResponse public function app_report_person_buysell_export_excell(Provider $provider, Access $access, Request $request, EntityManagerInterface $entityManagerInterface): BinaryFileResponse | JsonResponse | StreamedResponse
{ {
$acc = $access->hasRole('reports'); $acc = $access->hasRole('report');
if (!$acc) if (!$acc)
throw $this->createAccessDeniedException(); throw $this->createAccessDeniedException();
$params = []; $params = [];