diff --git a/app/Controllers/PrintResult.php b/app/Controllers/PrintResult.php index ac8f275..c278289 100644 --- a/app/Controllers/PrintResult.php +++ b/app/Controllers/PrintResult.php @@ -1153,9 +1153,7 @@ class PrintResult extends BaseController { $serum_type = $item["serum_type"]; $tesscode = $item["TESTCODE"]; $printable = $item['NOTPRINTABLE']; - $shorttext = $item['SHORTTEXT']; - // Hanya Temporary - return $serum_type == 'Feces' && ( in_array($tesscode, ['STC2', 'SCSAL', 'SCSHI']) || in_array($shorttext, ['Stool Culture 2 Bact', 'Salmonella sp', 'Shigella sp']) ) && $printable !=1; + 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"];