From 9716fc05f671d2ad417d55f40079d02f04809af0 Mon Sep 17 00:00:00 2001 From: Dwi Swandhana Date: Fri, 10 Apr 2026 18:16:52 +0700 Subject: [PATCH] update --- htdocs/app/Services/AstmMessageService.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/htdocs/app/Services/AstmMessageService.php b/htdocs/app/Services/AstmMessageService.php index d84189c5..d72c079e 100644 --- a/htdocs/app/Services/AstmMessageService.php +++ b/htdocs/app/Services/AstmMessageService.php @@ -889,7 +889,10 @@ class AstmMessageService if (str_starts_with($alat, 'MYLA')) { $organism = $obx[5] ?? '-'; + $abnormalFlag = $obx[8] ?? '-'; + $confidence = $obx[9] ?? '-'; $status = $obx[11] ?? '-'; + $operator = $obx[16] ?? '-'; $resultAt = $this->astmToDateTime($obx[14] ?? null) ?? '-'; $comment = $nte[3] ?? '-'; $specimen = $spm[3] ?? '-'; @@ -902,7 +905,10 @@ class AstmMessageService 'Jenis Pesan: '.$messageType, 'Test: '.$testId, 'Hasil: '.$organism, + 'Abnormal Flag: '.$abnormalFlag, + 'Confidence: '.$confidence, 'Status: '.$status, + 'Operator: '.$operator, 'Komentar: '.$comment, 'Tanggal Hasil: '.$resultAt, 'Tanggal Diterima LIS: '.$receivedAt,