Explorar el Código

fix:部门删除

zqbao hace 9 meses
padre
commit
b0f079e7b0
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      services/sys_department.go

+ 3 - 0
services/sys_department.go

@@ -39,6 +39,9 @@ func DeleteSysDepartmentById(sysDepartmentId, level int) (err error) {
 		}
 		curIds = make([]string, 0)
 		for _, dep := range sysDepartments {
+			if dep.SysDepartmentId == 0 {
+				continue
+			}
 			sysDepartmentIds = append(sysDepartmentIds, strconv.Itoa(dep.SysDepartmentId))
 			curIds = append(curIds, strconv.Itoa(dep.SysDepartmentId))
 		}