organization($request); abort_unless($modules->memberCanAccess($organization, $this->member($request), 'womens_health'), 403); } protected function assertWomensHealthManage(Request $request, SpecialtyModuleService $modules): void { $organization = $this->organization($request); abort_unless($modules->memberCanManage($organization, $this->member($request), 'womens_health'), 403); } protected function assertVisit(Request $request, Visit $visit): void { abort_unless($visit->organization_id === $this->organization($request)->id, 404); $this->authorizeBranch($request, (int) $visit->branch_id); } public function setStage( Request $request, Visit $visit, SpecialtyModuleService $modules, SpecialtyVisitStageService $stages, SpecialtyShellService $shell, ): RedirectResponse { $this->authorizeAbility($request, 'consultations.manage'); $this->assertWomensHealthManage($request, $modules); $this->assertVisit($request, $visit); $validated = $request->validate([ 'stage' => ['required', 'string', 'max:32'], ]); try { $stages->setStage( $this->organization($request), $visit, 'womens_health', $validated['stage'], $this->ownerRef($request), $this->actorRef($request), ); } catch (\InvalidArgumentException $e) { return back()->with('error', $e->getMessage()); } return redirect() ->route('care.specialty.workspace', [ 'module' => 'womens_health', 'visit' => $visit, 'tab' => $shell->workspaceTabForStage('womens_health', $validated['stage']), ]) ->with('success', 'Visit stage updated.'); } public function savePostnatal( Request $request, Visit $visit, SpecialtyModuleService $modules, SpecialtyClinicalRecordService $clinical, SpecialtyVisitStageService $stages, WomensHealthWorkflowService $workflow, ): RedirectResponse { $this->authorizeAbility($request, 'consultations.manage'); $this->assertWomensHealthManage($request, $modules); $this->assertVisit($request, $visit); $organization = $this->organization($request); $owner = $this->ownerRef($request); $payload = (array) $request->input('payload', []); foreach ($clinical->fieldsFor('womens_health', 'postnatal_note') as $field) { if (($field['type'] ?? '') === 'boolean') { $payload[$field['name']] = $request->boolean('payload.'.$field['name']); } } $request->merge(['payload' => $payload, 'tab' => 'postnatal']); $validated = $request->validate(array_merge([ 'tab' => ['required', 'string'], ], $clinical->validationRules('womens_health', 'postnatal_note'))); $record = $clinical->upsert( $organization, $visit, 'womens_health', 'postnatal_note', $clinical->payloadFromRequest($validated), $owner, $owner, WomensHealthWorkflowService::STAGE_POSTNATAL, SpecialtyClinicalRecord::STATUS_COMPLETED, ); try { $stages->setStage( $organization, $visit, 'womens_health', WomensHealthWorkflowService::STAGE_POSTNATAL, $owner, $owner, ); } catch (\InvalidArgumentException) { } if ($workflow->shouldCompleteVisit($record->payload ?? [])) { try { $stages->setStage( $organization, $visit, 'womens_health', WomensHealthWorkflowService::STAGE_COMPLETED, $owner, $owner, ); } catch (\InvalidArgumentException) { } $visit->refresh(); if ($visit->status !== Visit::STATUS_COMPLETED) { $visit->update([ 'status' => Visit::STATUS_COMPLETED, 'completed_at' => $visit->completed_at ?? now(), ]); } $appointment = $visit->appointment; if ($appointment && $appointment->status !== \App\Models\Appointment::STATUS_COMPLETED) { $appointment->update([ 'status' => \App\Models\Appointment::STATUS_COMPLETED, 'completed_at' => $appointment->completed_at ?? now(), ]); } } return redirect() ->route('care.specialty.workspace', ['module' => 'womens_health', 'visit' => $visit, 'tab' => 'postnatal']) ->with('success', 'Delivery / postnatal note saved.'); } public function reports( Request $request, SpecialtyModuleService $modules, SpecialtyShellService $shell, WomensHealthAnalyticsService $analytics, ): View { $this->authorizeAbility($request, 'consultations.view'); $this->assertWomensHealthAccess($request, $modules); $organization = $this->organization($request); $branchScope = app(\App\Services\Care\OrganizationResolver::class)->branchScope($this->member($request)); $report = $analytics->report( $organization, $this->ownerRef($request), $branchScope, $request->query('from'), $request->query('to'), ); return view('care.specialty.womens_health.reports', [ 'moduleKey' => 'womens_health', 'definition' => $modules->definition('womens_health'), 'shellNav' => $shell->navItems('womens_health'), 'report' => $report, 'currency' => strtoupper((string) config('care.billing.currency', config('care.currency', 'GHS'))), ]); } public function printSummary( Request $request, Visit $visit, SpecialtyModuleService $modules, SpecialtyClinicalRecordService $clinical, ): View { $this->authorizeAbility($request, 'consultations.view'); $this->assertWomensHealthAccess($request, $modules); $this->assertVisit($request, $visit); $visit->loadMissing(['patient', 'appointment.practitioner', 'branch']); return view('care.specialty.womens_health.print', [ 'visit' => $visit, 'patient' => $visit->patient, 'history' => $clinical->findForVisit($visit, 'womens_health', 'anc_history'), 'exam' => $clinical->findForVisit($visit, 'womens_health', 'obstetric_exam'), 'fetal' => $clinical->findForVisit($visit, 'womens_health', 'fetal_notes'), 'investigation' => $clinical->findForVisit($visit, 'womens_health', 'mat_investigation'), 'plan' => $clinical->findForVisit($visit, 'womens_health', 'mat_plan'), 'postnatal' => $clinical->findForVisit($visit, 'womens_health', 'postnatal_note'), ]); } }