* работа над функционалом автоматического заполнения

* исправил фантомный сдвиг даты
* переделал получение ФИО врачей из отделений
* добавил возможность поиска врача
* переписал сохранение отчета
This commit is contained in:
brusnitsyn
2026-02-05 17:11:43 +09:00
parent eab78a0291
commit 10fb138c30
22 changed files with 1192 additions and 654 deletions

View File

@@ -68,12 +68,9 @@ class ReportController extends Controller
'reportId' => 'nullable|integer'
]);
$report = $this->reportService->storeReport($validated, Auth::user());
$report = $this->reportService->storeReport($validated, Auth::user(), false);
return response()->json([
'message' => 'success',
'report_id' => $report->report_id
]);
return redirect()->route('start');
}
public function getPatients(Request $request)