unknown 4 年之前
父节点
当前提交
cef9d82a9c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/Http/Controllers/PracticeManagementController.php

+ 1 - 1
app/Http/Controllers/PracticeManagementController.php

@@ -988,7 +988,7 @@ class PracticeManagementController extends Controller
             }
         }
 
-        $patientsQuery->where('notes_total', '>', 0);
+        $patientsQuery->whereRaw('(SELECT COUNT(*) FROM note where note.client_id = client.id) > 0');
 
         $patientsQuery->orderBy('notes_without_claiming_closed', 'DESC');