Изменения в основном report

This commit is contained in:
brusnitsyn
2026-05-06 22:32:11 +09:00
parent c5da85763c
commit 723ccee8d3
56 changed files with 1911 additions and 3814 deletions

View File

@@ -2,7 +2,6 @@
namespace App\Http\Controllers\Web;
use App\Application\Reports\ReportSavePathService;
use App\Exports\ReportPageExport;
use App\Http\Controllers\Controller;
use App\Http\Resources\Mis\FormattedPatientResource;
@@ -22,7 +21,6 @@ class ReportController extends Controller
protected ReportPageService $reportPageService,
protected ReportService $reportService,
protected DateRangeService $dateRangeService,
protected ReportSavePathService $reportSavePathService,
) {}
public function index(Request $request)
@@ -48,7 +46,7 @@ class ReportController extends Controller
'status' => 'nullable|in:draft,submitted',
]);
$this->reportSavePathService->saveManual(Auth::user(), $validated);
$this->reportService->storeReport($validated, Auth::user());
return redirect()->route('start');
}