Explorar el Código

Merge branches 'v5.0.0dev' and 'v5.0.0dev' of https://gitee.com/ZhongBangKeJi/CRMEB into v5.0.0dev

From-wh hace 2 años
padre
commit
4c0e4e2e8f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      crmeb/app/dao/system/admin/SystemAdminDao.php

+ 1 - 1
crmeb/app/dao/system/admin/SystemAdminDao.php

@@ -102,6 +102,6 @@ class SystemAdminDao extends BaseDao
      */
     public function checkRoleUse(int $id): bool
     {
-        return (bool)$this->getModel()->whereFindInSet('roles', $id)->count();
+        return (bool)$this->getModel()->where('is_del', 0)->whereFindInSet('roles', $id)->count();
     }
 }