$defaultMax) { return 'AB'; } return true; } public function otherTests($resultData, $data, $note) { // Mengetahui Apakah User Login adalah Bali atau Surabaya $cityid = session()->get('usercityid'); // Digunakan untuk mengetahui user yang melakukan Validasi khusus analis surabaya foreach($resultData as $result) { $uservalidator = $result['validator']; break; } if ($cityid == 1) { if ($uservalidator != null){ $doctor = "dr. I Komang Parwata Sp.PK"; $analyst = "Mrs. Gusti Ayu Riska Mastari"; $noreg = "Reg. No: 570/SIPDS/0001/I/DPMPTSP/2023"; $signature = ""; $enteredby = "Entered By"; $labtech = "Lab Technician"; $verifiedby = "Verified By"; } else { $verifiedby = "Waiting for Validation"; $enteredby = "Waiting for Validation"; $labtech = ""; $doctor = ""; $analyst = ""; $noreg = ""; $signature = ""; } } elseif ($cityid == 2) { if ($uservalidator == "MG") { $doctor = "dr. I.G.A.A Putri Sri Rejeki, Sp.PK"; $noreg = "SIP : 503.446/1091/B/IP.DS/436.7.15/2022"; $signature = ""; $enteredby = "Entered By"; $labtech = "Lab Technician"; $analyst = "Mrs. Mega Rahayu Ningsih"; $verifiedby = "Verified By"; } else if ($uservalidator == "ACP") { $doctor = "dr. I.G.A.A Putri Sri Rejeki, Sp.PK"; $noreg = "SIP : 503.446/1091/B/IP.DS/436.7.15/2022"; $signature = ""; $enteredby = "Entered By"; $labtech = "Lab Technician"; $analyst = "Mrs. Afrita Catur Pratiwi"; $verifiedby = "Verified By"; } else { $verifiedby = "Waiting for Validation"; $enteredby = "Waiting for Validation"; $labtech = ""; $doctor = ""; $analyst = ""; $noreg = ""; $signature = ""; } } else { //Jika Login Adalah Sistem dan tidak punya city id $verifiedby = "LISFSE/SYSTEM/ADMIN"; $enteredby = "LISFSE/SYSTEM/ADMIN"; $labtech = ""; $doctor = ""; $analyst = ""; $noreg = ""; $signature = ""; } if ($data[0] != null) { $accessnumber = $data[0]['SP_ACCESSNUMBER']; $sex = $data[0]['SEX'] == 1 ? "Male" : "Female"; $rm_number = $data[0]['PATNUMBER']; $rm_number = substr($rm_number, -10); $first_name = $data[0]['FIRSTNAME']; $last_name = $data[0]['NAME']; $birth_date = $data[0]['BIRTHDATE']; $birth_date = \DateTime::createFromFormat('Y-m-d H:i:s.u', $birth_date); if ($birth_date) { $birth_date = $birth_date->format('d-m-Y'); } $hostordernumber = $data[0]['HOSTORDERNUMBER']; $collection_date = $data[0]['COLLECTIONDATE']; $dateTimeCol = \DateTime::createFromFormat('Y-m-d H:i:s.u', $collection_date); if ($dateTimeCol) { $collection_date = $dateTimeCol->format('d-m-Y H:i'); } $result_date = $data[0]['RESULTDATE']; $dateTimeRes = \DateTime::createFromFormat('Y-m-d H:i:s.u', $result_date); if ($dateTimeRes) { $result_date = $dateTimeRes->format('d-m-Y H:i'); } } else { $sex =''; $accessnumber = ""; $rm_number = ""; $first_name = ""; $last_name = ""; $birth_date = ""; $hostordernumber = ""; $collection_date = ""; $result_date = ""; } $fullPage=""; $headPage = "
CLINICAL LABORATORY
RM Number : $rm_number Visit Number : $hostordernumber
First Name : $first_name Request Number : $accessnumber
Last Name : $last_name Order Date/Time : $collection_date
DoB/Gender : $birth_date / $sex Result Date/Time : $result_date

"; $resultTest =""; // Untuk Collection if ($data[1] != null) { $colltext = ''; $recvtext = ''; $qcolldate = ''; $qcolltime = ''; $qrecvdate = ''; $qrecvtime = ''; foreach ($data[1] as $item) { $samp = $item['SHORTTEXT']; $colldate = $item['colldate']; $recvdate = $item['recvdate']; $colltime = $item['colltime']; $recvtime = $item['recvtime']; if($colldate !='') { if($colldate != $qcolldate) { $colltext .= "$colldate $colltime $samp"; $qcolldate = $colldate; $qcolltime = $colltime; } else { if($colltime != $qcolltime) { $colltext .= ", $colltime $samp"; $qcolltime = $colltime; } else { $colltext .= ", $samp"; } } } if($recvdate !='') { if($recvdate != $qrecvdate) { $recvtext .= "$recvdate $recvtime $samp"; $qrecvdate = $recvdate; $qrecvtime = $recvtime; } else { if($recvtime != $qrecvtime) { $recvtext .= ", $recvtime $samp"; $qrecvtime = $recvtime; } else { $recvtext .= ", $samp"; } } } } } $resultNoteandSpecimen = "
Parameter Result Unit Normal Range Sample
Notes
".$note."

Collection datetime : $colltext
Reception datetime : $recvtext
"; $footerPage = " "; $lastDiv="
"; $tempChapEng = ""; $tempChapInd = ""; $i=0; foreach ($resultData as $item) { // Untuk Spasi Depth $space=""; if ($item['RESULT'] != null) { $j=0; $space.=" "; for ($j=0; $j<=$item['DEPTH']; $j++) { $space .= "  "; } if ($item['DEPTH']==0){ $space.=" "; } } else { for ($j=0; $j<=$item['DEPTH']; $j++) { $space .= "  "; } } // Untuk Penamaan Serum Khusus test if ($item["RESULT"] == null) { $serum_type = ""; }else { $serum_type = $item["serum_type"]; } $resflag = $item["RESFLAG"] == "N" ? '' : $item["RESFLAG"]; if ($tempChapEng != $item['chap_eng']) { $tempChapEng = $item['chap_eng']; $tempChapInd = $item['chap_ind']; $i++; // Melebihi batas Kertas if($i % 28 == 0) { $resultTest .= "
"; $fullPage .= $headPage.$resultTest.$footerPage.$lastDiv; $i=0; $resultTest = ""; } if($i==0){ $i++; } // Untuk Chapter $resultTest .= "
".$tempChapEng."
"; } // Melebihi batas Kertas if($i % 28 == 0 && $i!=0) { $resultTest .= ""; $fullPage .= $headPage.$resultTest.$footerPage.$lastDiv; $i=0; $resultTest = ""; } $i++; if ($item['RESTYPE'] == "CE"){ $resvalue = $item['RESULT']; } else if ($item['RESTYPE'] == null) { $resvalue = $item['RESULT']; } else { $resvalue = $item['RESVALUE']; } $reff = $item["REFRANGE"]; $refftext = $item["REFFTEXT"]; if($refftext !='') {$reff = $refftext;} $unit = $item['UNIT']; $unittext = $item['UNITTEXT']; if($unittext !='') {$unit = $unittext;} // Untuk mewarnai value yang tidak beda dengan nilai normal $color = ""; if ($resflag == 'L' || $resflag == 'H') { $color = "red_font"; } $range = $this->checkRange($item['RESULT'], $item['REFFTEXT']); if ($item['code_type'] == 6 && $item['REFFTEXT'] != null) { if ($range == true) { // Jika nilai masih dalam rentang nilai normal $color = ""; } elseif ($range == false) { // Jika nilai bukan merupakan rentang if ($item['RESULT'] != $item['REFFTEXT']) { $color = "red_font"; } } else { // Jika Rentang diatas nilai normal $color = "red_font"; } } $test = ""; // Untuk Nama Test Apakah lebih dari 24 karaktera if ( strlen($item['test_eng']) > 24 || strlen($item['test_ind']) > 24) { $test = "
" . $space . $item["test_eng"]."
$space".$item["test_ind"]."
"; } else { $test = "
" . $space . $item["test_eng"]." "."".$item["test_ind"]."
"; } if ($item['code_type'] == 5) { $resultTest .= " ".$test." " . $resflag . " " . $resvalue . " " . $serum_type . " "; } else { $resultTest .= " ".$test." " . $resflag . " " . $resvalue . " " . "
" .$unit. "
" . "
						" . "
" .$reff. "
" . "
						" . $serum_type . "
					
				";
			}
			
			
            
            // Melebihi batas Kertas
            if($i % 28 == 0 && $i != 0) {
                $resultTest .= "";
                $fullPage .= $headPage.$resultTest.$footerPage.$lastDiv;
                $i=0;
                $resultTest = "";
            }
	
		}

		$resultTest .= "
				
				".$resultNoteandSpecimen."
				";
		
		$fullPage .= $headPage.$resultTest.$footerPage.$lastDiv;

		return $fullPage;
	}

    public function printResultTest($access) {
		$cityid = session()->get('usercityid');
		$db = \Config\Database::connect();

		// Memisahkan Waktu yang ditampilkan pada laporan hasil
		$filter_query_result="";
		if ($cityid == 1) {
			$filter_query_result = " r.MAX_RESDATE AS RESULTDATE ";
		} elseif ($cityid == 2) {
			$filter_query_result = " FORMAT(DATEADD(HOUR, -1, r.MAX_RESDATE), 'yyyy-MM-dd HH:mm:ss.fff') AS RESULTDATE ";
		} else {
			$filter_query_result = " r.MAX_RESDATE AS RESULTDATE ";
		}
		// Untuk Header
		$sql = "SELECT 
					p.PATNUMBER, 
					p.FIRSTNAMESK as FIRSTNAME, 
					p.NAME,  
					p.BIRTHDATE, 
					sr.HOSTORDERNUMBER, 
					sr.COLLECTIONDATE, 
					sr.SP_ACCESSNUMBER, 
					p.SEX, 
					".$filter_query_result."
				FROM 
					PATIENTS p
				LEFT JOIN 
					SP_REQUESTS sr 
					ON p.PATID = sr.PATID
				LEFT JOIN 
					(
						SELECT 
							MAX(RESDATE) AS MAX_RESDATE, 
							ACCESSNUMBER 
						FROM 
							[cmod].[dbo].[CM_RESULTS]
						WHERE 
							ACCESSNUMBER = '$access'
						GROUP BY 
							ACCESSNUMBER
					) r 
					ON sr.SP_ACCESSNUMBER = r.ACCESSNUMBER
				WHERE 
					sr.SP_ACCESSNUMBER = '$access'";
		$query = $db->query($sql);
		$results = $query->getResultArray();
		$header = $results[0];

		// Memisahkan Waktu yang ditampilkan pada laporan hasil
		$filter_query_collection="";
		if ($cityid == 1) {
			$filter_query_collection = " FORMAT(ct.COLLECTIONDATE, 'HH:mm') AS colltime ";
		} elseif ($cityid == 2) {
			$filter_query_collection = " FORMAT(DATEADD(HOUR, -1, ct.COLLECTIONDATE), 'HH:mm') AS colltime ";
		} else {
			$filter_query_collection = " FORMAT(ct.COLLECTIONDATE, 'HH:mm') AS colltime ";
		}
		// Untuk Collection
		$sql = "SELECT 
					ds.SHORTTEXT, 
					FORMAT(tu.COLLECTIONDATE, 'dd-MM-yyyy') AS recvdate, 
					FORMAT(tu.COLLECTIONDATE, 'HH:mm') AS recvtime, 
					FORMAT(ct.COLLECTIONDATE, 'dd-MM-yyyy') AS colldate,
					".$filter_query_collection."
				FROM 
					SP_TUBES tu
				LEFT JOIN 
					DICT_SAMPLES_TYPES ds ON ds.SAMPCODE = tu.SAMPLETYPE
				LEFT JOIN 
					cmod.dbo.CM_TUBES ct ON ct.SAMPLETYPE = tu.SAMPLETYPE AND ct.ACCESSNUMBER = tu.SP_ACCESSNUMBER
				WHERE 
					tu.SP_ACCESSNUMBER = '$access';";
		$query = $db->query($sql);
		$results = $query->getResultArray();
		$collection = $results;
		$data = [$header, $collection];

		$sql = "SELECT 
				dc.CHAPID, 
				dc.FULLTEXT as chap_eng, 
				dc.FULLTEXT as chap_ind, 
				st.FULLTEXT as serum_type,
				cdt.TEXT1 as test_eng, 
				cdt.TEXT2 as test_ind,
				cdt.UNIT as UNITTEXT,
				cdt.REFFTEXT,
				t.DEPTH,
				t.NOTPRINTABLE,
				t.TESTORDER,
				t.RESTYPE as code_type,
				t.VALIDATIONINITIALS  as validator,
				dt.SHORTTEXT,
				RESULT = case when t.RESVALUE is null then tx.FULLTEXT else t.RESVALUE end,
				cr.* 
				from REQUESTS r 
				left join TESTS t on t.REQUESTID = r.REQUESTID 
				left join DICT_TESTS dt on dt.ENDVALIDDATE is null and t.TESTID=dt.TESTID
				left join DICT_TEXTS tx on tx.TEXTID=t.CODEDRESULTID
				left join DICT_CHAPTERS	dc on dc.CHAPID=dt.CHAPID and dc.ENDVALIDDATE is null
				left join DICT_TEST_SAMPLES ts on ts.TESTID=t.TESTID and dt.TESTID=ts.TESTID
				left join DICT_SAMPLES_TYPES st on st.SAMPTYPEID=ts.SAMPTYPEID
				left join cmod.dbo.CM_DICT_TESTS cdt on dt.TESTCODE=cdt.TESTCODE
				left join cmod.dbo.CM_RESULTS cr on cr.ACCESSNUMBER=r.ACCESSNUMBER and cr.TESTCODE=cdt.TESTCODE and cr.TESTCODE=dt.TESTCODE
				where r.ACCESSNUMBER='$access' 
				ORDER BY t.TESTORDER";
        $query = $db->query($sql);
        $results = $query->getResultArray();
		
		$data_pregnancy = array_filter($results, function($item) {
            $serum_type = $item["serum_type"];
			$tesscode = $item["TESTCODE"];
			$test_eng = $item["test_eng"];
			$printable = $item['NOTPRINTABLE'];
            return $serum_type == 'Urine' && ($tesscode == 'PPT' || $test_eng == "Pregnancy Test") && $printable !=1;
        });
		$data_urine_lengkap = array_filter($results, function($item) {
            $serum_type = $item["serum_type"];
			$tesscode = $item["TESTCODE"];
			$test_eng = $item["test_eng"];
			$chap_eng = $item["chap_eng"];
			$printable = $item['NOTPRINTABLE'];
            return $serum_type == 'Urine' && $tesscode != 'PPT' && $test_eng != "Pregnancy Test" && $chap_eng != "MICROBIOLOGY" && $printable !=1;
        });
		$data_urine_kultur = array_filter($results, function($item) {
            $serum_type = $item["serum_type"];
			$chap_eng = $item["chap_eng"];
			$printable = $item['NOTPRINTABLE'];
            return $serum_type == 'Urine' && $chap_eng == "MICROBIOLOGY" && $printable !=1;
        });
		$data_feces_stc2 = array_filter($results, function($item) {
            $serum_type = $item["serum_type"];
			$tesscode = $item["TESTCODE"];
			$printable = $item['NOTPRINTABLE'];
            return $serum_type == 'Feces' && in_array($tesscode, ['STC2', 'SCSAL', 'SCSHI']) && $printable !=1;
        });
		$data_feces_stc4 = array_filter($results, function($item) {
            $serum_type = $item["serum_type"];
			$tesscode = $item["TESTCODE"];
			$printable = $item['NOTPRINTABLE'];
            return $serum_type == 'Feces' && in_array($tesscode, ['STC4', 'FCSAL', 'FCSHI', 'FCVIB', 'FCESC']) && $printable !=1;
        });
		$data_feces_lengkap = array_filter($results, function($item) {
            $serum_type = $item["serum_type"];
			$tesscode = $item["TESTCODE"];
			$printable = $item['NOTPRINTABLE'];
            return $serum_type == 'Feces' && !in_array($tesscode, ['STC2', 'SCSAL', 'SCSHI', 'STC4', 'FCSAL', 'FCSHI', 'FCVIB', 'FCESC']) && $printable !=1;
        });

		$data_RCS = array_filter($results, function($item) {
            $serum_type = $item["serum_type"];
			$printable = $item['NOTPRINTABLE'];
            return $serum_type == 'Swab Tenggorokan' && $printable !=1;
        });

		$data_others = array_filter($results, function($item) {
            $serum_type = $item["serum_type"];
			$chapter_eng = $item['chap_eng'];
			$printable = $item['NOTPRINTABLE'];
            return $serum_type != 'Feces' && $serum_type != 'Urine' && $chapter_eng != 'Note' && $serum_type != 'Swab Tenggorokan' && $printable !=1;
        });

		$notes = array_filter($results, function($item) {
            $chap_id = $item["CHAPID"];
			$chap_eng = $item["chap_eng"];
            return $chap_id == 54 && $chap_eng == "Note";
        });
		// Mengambil elemen pertama dari hasil filter
		$notes = reset($notes); // Ambil elemen pertama
		$note = $notes["RESULT"] ?? "-"; // Ambil nilai RESULT, atau null jika tidak ada

        $fullPage = "";

		if ($data_others != null) {
            $fullPage .= $this->otherTests($data_others, $data, $note);
        }

		if ($data_RCS != null) {
            $fullPage .= $this->otherTests($data_RCS, $data, $note);
        }

		if ($data_urine_kultur != null) {
            $fullPage .= $this->otherTests($data_urine_kultur, $data, $note);
        }
		if ($data_pregnancy != null) {
            $fullPage .= $this->otherTests($data_pregnancy, $data, $note);
        }
		if ($data_urine_lengkap != null) {
            $fullPage .= $this->otherTests($data_urine_lengkap, $data, $note);
        }
		
        if ($data_feces_stc2 != null) {
            $fullPage .= $this->otherTests($data_feces_stc2, $data, $note);
        }
		if ($data_feces_stc4 != null) {
            $fullPage .= $this->otherTests($data_feces_stc4, $data, $note);
        }
		if ($data_feces_lengkap != null) {
            $fullPage .= $this->otherTests($data_feces_lengkap, $data, $note);
        }
        
        return view('result_report', ['data' => $fullPage, 'site' => $header['HOSTORDERNUMBER']]);
    }
    
}