This commit is contained in:
Dwi Swandhana
2026-07-20 11:25:33 +07:00
parent 0123036226
commit 707e2cb841
2 changed files with 89 additions and 84 deletions
@@ -838,19 +838,19 @@ class DokterController extends Controller
return null;
}
if ($normalized === 'Penerimaan Sampel') {
if ($normalized === 'penerimaan sampel') {
return 1;
}
if (in_array($normalized, ['Pemeriksaan awal', 'Pemeriksaan Sampel', 'Proses Analisis Sampel'], true)) {
if (in_array($normalized, ['pemeriksaan awal', 'pemeriksaan sampel', 'proses analisis sampel'], true)) {
return 2;
}
if (str_starts_with($normalized, 'Data BD di Terima')) {
if (str_starts_with($normalized, 'data bd di terima')) {
return 3;
}
if ($normalized === 'Pewarnaan Langsung') {
if ($normalized === 'pewarnaan langsung') {
return 4;
}
@@ -858,23 +858,23 @@ class DokterController extends Controller
return 5;
}
if (str_starts_with($normalized, 'Otor Maldi (Un Verified)')) {
if (str_starts_with($normalized, 'otor maldi (un verified)')) {
return 6;
}
if (str_starts_with($normalized, 'Preliminary Results')) {
if (str_starts_with($normalized, 'preliminary results')) {
return 7;
}
if (str_starts_with($normalized, 'Data Vitek di Terima')) {
if (str_starts_with($normalized, 'data vitek di terima')) {
return 8;
}
if (str_starts_with($normalized, 'Expertise Saved (Un Verified)')) {
if (str_starts_with($normalized, 'expertise saved (un verified)')) {
return 9;
}
if (in_array($normalized, ['Expertise', 'Selesai', 'Final Result'], true)) {
if (in_array($normalized, ['expertise', 'selesai', 'final result'], true)) {
return 10;
}