Browse Source

不允许删除部门时有子级部门

kely 1 year ago
parent
commit
d579b8936d
1 changed files with 4 additions and 0 deletions
  1. 4 0
      app/Http/Controllers/API/DepartmentController.php

+ 4 - 0
app/Http/Controllers/API/DepartmentController.php

@@ -61,6 +61,10 @@ class DepartmentController extends Controller
     {
         $department = Department::findOrFail($id);
 
+        if(!empty($department->children()->first())){
+            throw new \Exception("请删除子级部门");
+        }
+
         $department->delete();
 
         return $this->noContent();