diff --git a/htdocs/app/Http/Controllers/DokterController.php b/htdocs/app/Http/Controllers/DokterController.php index e6490ca3..41b24d23 100644 --- a/htdocs/app/Http/Controllers/DokterController.php +++ b/htdocs/app/Http/Controllers/DokterController.php @@ -854,7 +854,7 @@ class DokterController extends Controller return 9; } - if (str_starts_with($normalized, 'id/ast pending result') || $normalized === 'sedang id+ast') { + if (str_starts_with($normalized, 'id/ast pending result')) { return 10; } @@ -882,6 +882,7 @@ class DokterController extends Controller 'menunggu kultur yang lain', 'proses identifikasi dan uji kepekaan', 'sedang malditof', + 'sedang id+ast', 'pertumbuhan primer', ]; diff --git a/htdocs/app/Services/AstmMessageService.php b/htdocs/app/Services/AstmMessageService.php index 7e61a38f..199c9dfb 100644 --- a/htdocs/app/Services/AstmMessageService.php +++ b/htdocs/app/Services/AstmMessageService.php @@ -159,7 +159,7 @@ class AstmMessageService return 9; } - if (str_starts_with($normalized, 'id/ast pending result') || $normalized === 'sedang id+ast') { + if (str_starts_with($normalized, 'id/ast pending result')) { return 10; } @@ -191,6 +191,7 @@ class AstmMessageService 'menunggu kultur yang lain', 'proses identifikasi dan uji kepekaan', 'sedang malditof', + 'sedang id+ast', 'pertumbuhan primer', ];