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>
107 lines
3.0 KiB
PHP
107 lines
3.0 KiB
PHP
<?php
|
|
|
|
namespace App\Services\Care\Oncology;
|
|
|
|
/**
|
|
* Map oncology clinical progress onto visit stages.
|
|
*/
|
|
class OncologyWorkflowService
|
|
{
|
|
public const STAGE_CHECK_IN = 'check_in';
|
|
|
|
public const STAGE_HISTORY = 'history';
|
|
|
|
public const STAGE_STAGING = 'staging';
|
|
|
|
public const STAGE_INVESTIGATION = 'investigation';
|
|
|
|
public const STAGE_PLAN = 'plan';
|
|
|
|
public const STAGE_TREATMENT = 'treatment';
|
|
|
|
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 stageFromStaging(array $payload): string
|
|
{
|
|
if (! empty($payload['diagnosis'])
|
|
|| ! empty($payload['stage'])
|
|
|| ! empty($payload['exam_findings'])) {
|
|
return self::STAGE_STAGING;
|
|
}
|
|
|
|
return self::STAGE_HISTORY;
|
|
}
|
|
|
|
/**
|
|
* @param array<string, mixed> $payload
|
|
*/
|
|
public function stageFromInvestigation(array $payload): string
|
|
{
|
|
$findings = trim((string) ($payload['findings'] ?? ''));
|
|
if ($findings !== '') {
|
|
return self::STAGE_INVESTIGATION;
|
|
}
|
|
|
|
return self::STAGE_STAGING;
|
|
}
|
|
|
|
/**
|
|
* @param array<string, mixed> $payload
|
|
*/
|
|
public function stageFromPlan(array $payload): string
|
|
{
|
|
if (! empty($payload['treatment_planned'])) {
|
|
return self::STAGE_TREATMENT;
|
|
}
|
|
|
|
$plan = trim((string) ($payload['plan'] ?? ''));
|
|
if ($plan !== '') {
|
|
return self::STAGE_PLAN;
|
|
}
|
|
|
|
return self::STAGE_INVESTIGATION;
|
|
}
|
|
|
|
/**
|
|
* @param array<string, mixed> $payload
|
|
*/
|
|
public function shouldCompleteVisit(array $payload): bool
|
|
{
|
|
$outcome = strtolower((string) ($payload['outcome'] ?? ''));
|
|
|
|
return str_contains($outcome, 'completed');
|
|
}
|
|
|
|
/**
|
|
* @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_STAGING, 'label' => 'Move to staging / exam'],
|
|
self::STAGE_STAGING => ['next' => self::STAGE_INVESTIGATION, 'label' => 'Move to investigations'],
|
|
self::STAGE_INVESTIGATION => ['next' => self::STAGE_PLAN, 'label' => 'Move to diagnosis & plan'],
|
|
self::STAGE_PLAN => ['next' => self::STAGE_TREATMENT, 'label' => 'Move to treatment'],
|
|
self::STAGE_TREATMENT => ['next' => self::STAGE_COMPLETED, 'label' => 'Complete visit'],
|
|
self::STAGE_COMPLETED => ['next' => self::STAGE_COMPLETED, 'label' => 'Completed'],
|
|
];
|
|
}
|
|
}
|