Deploy Ladill Care / deploy (push) Successful in 32s
Match Pediatrics/ENT depth with stages, workspace tabs, clinical records, reports/print, demo seed, and suite tests. Co-authored-by: Cursor <cursoragent@cursor.com>
99 lines
2.7 KiB
PHP
99 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace App\Services\Care\Renal;
|
|
|
|
/**
|
|
* Map renal / nephrology clinical progress onto visit stages.
|
|
*/
|
|
class RenalWorkflowService
|
|
{
|
|
public const STAGE_CHECK_IN = 'check_in';
|
|
|
|
public const STAGE_HISTORY = 'history';
|
|
|
|
public const STAGE_EXAM = 'exam';
|
|
|
|
public const STAGE_DIALYSIS = 'dialysis';
|
|
|
|
public const STAGE_PLAN = 'plan';
|
|
|
|
public const STAGE_COMPLETED = 'completed';
|
|
|
|
/**
|
|
* @param array<string, mixed> $payload
|
|
*/
|
|
public function stageFromHistory(array $payload): string
|
|
{
|
|
$history = trim((string) ($payload['history'] ?? ''));
|
|
if ($history !== '') {
|
|
return self::STAGE_HISTORY;
|
|
}
|
|
|
|
return self::STAGE_CHECK_IN;
|
|
}
|
|
|
|
/**
|
|
* @param array<string, mixed> $payload
|
|
*/
|
|
public function stageFromExam(array $payload): string
|
|
{
|
|
if (! empty($payload['chief_complaint'])
|
|
|| ! empty($payload['exam_findings'])
|
|
|| ! empty($payload['fluid_status'])) {
|
|
return self::STAGE_EXAM;
|
|
}
|
|
|
|
return self::STAGE_HISTORY;
|
|
}
|
|
|
|
/**
|
|
* @param array<string, mixed> $payload
|
|
*/
|
|
public function stageFromDialysis(array $payload): string
|
|
{
|
|
if (! empty($payload['session_type']) || ! empty($payload['notes'])) {
|
|
return self::STAGE_DIALYSIS;
|
|
}
|
|
|
|
return self::STAGE_EXAM;
|
|
}
|
|
|
|
/**
|
|
* @param array<string, mixed> $payload
|
|
*/
|
|
public function stageFromPlan(array $payload): string
|
|
{
|
|
$plan = trim((string) ($payload['plan'] ?? ''));
|
|
if ($plan !== '') {
|
|
return self::STAGE_PLAN;
|
|
}
|
|
|
|
return self::STAGE_DIALYSIS;
|
|
}
|
|
|
|
/**
|
|
* @param array<string, mixed> $payload
|
|
*/
|
|
public function shouldCompleteVisit(array $payload): bool
|
|
{
|
|
$outcome = strtolower((string) ($payload['outcome'] ?? ''));
|
|
|
|
return str_contains($outcome, 'completed') || str_contains($outcome, 'discharged');
|
|
}
|
|
|
|
/**
|
|
* @return array<string, array{next: string, label: string}>
|
|
*/
|
|
public function stageFlow(): array
|
|
{
|
|
return [
|
|
self::STAGE_CHECK_IN => ['next' => self::STAGE_HISTORY, 'label' => 'Start history'],
|
|
self::STAGE_HISTORY => ['next' => self::STAGE_EXAM, 'label' => 'Move to exam'],
|
|
self::STAGE_EXAM => ['next' => self::STAGE_DIALYSIS, 'label' => 'Move to dialysis / labs'],
|
|
self::STAGE_DIALYSIS => ['next' => self::STAGE_PLAN, 'label' => 'Move to care plan'],
|
|
self::STAGE_PLAN => ['next' => self::STAGE_COMPLETED, 'label' => 'Complete visit'],
|
|
self::STAGE_COMPLETED => ['next' => self::STAGE_COMPLETED, 'label' => 'Completed'],
|
|
];
|
|
}
|
|
}
|