Ship full Emergency specialty suite on the shared shell.
Deploy Ladill Care / deploy (push) Successful in 34s

Add ED visit stages, triage-driven routing, vitals, observation, disposition, reports, and print summary so Emergency matches Dentistry’s operational depth without a parallel EHR.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-18 17:48:57 +00:00
co-authored by Cursor
parent 18c24077e3
commit 7989ab9184
19 changed files with 1413 additions and 22 deletions
+3 -2
View File
@@ -292,11 +292,12 @@ class CareQueueProvisioner
string $context,
$priorByKey,
): array {
if ($context !== 'dentistry') {
$stages = app(SpecialtyShellService::class)->stages($context);
$hasQueuePoints = collect($stages)->contains(fn ($s) => is_string($s['queue_point'] ?? null) && $s['queue_point'] !== '');
if (! $hasQueuePoints) {
return [];
}
$stages = app(SpecialtyShellService::class)->stages($context);
$seen = [];
$points = [];
foreach ($stages as $stage) {