This commit is contained in:
Dwi Swandhana
2026-03-04 17:42:00 +07:00
parent e0ac8dd30d
commit 4a8006c399
6 changed files with 429 additions and 14 deletions

No files matched your search

@@ -2266,7 +2266,11 @@ class DokterController extends Controller
$arrnofoto = explode('-', $nofoto);
$nofoto = $arrnofoto[0];
if ($statuse != 'Selesai'){
Periksa::where('id', $id)->update([
Periksa::where('id', $id)->whereNull('status')->update([
'status' => 'Dikerjakan awal',
'excutor' => $idpemeriksa,
]);
Periksa::where('id', $id)->where('status', 'Dikerjakan awal')->update([
'status' => 'Pemeriksaan Sampel',
'excutor' => $idpemeriksa,
]);