Эх сурвалжийг харах

部门管理新增和修改只能添加下级部门,顶级部门不能修改和删除

zhontai 2 жил өмнө
parent
commit
0c259564e0

+ 10 - 0
src/platform/ZhonTai.Admin/Services/Org/OrgService.cs

@@ -62,6 +62,11 @@ public class OrgService : BaseService, IOrgService, IDynamicApi
     /// <returns></returns>
     public async Task<long> AddAsync(OrgAddInput input)
     {
+        if(input.ParentId == 0)
+        {
+            throw ResultOutput.Exception($"请选择上级部门");
+        }
+
         if (await _orgRepository.Select.AnyAsync(a => a.ParentId == input.ParentId && a.Name == input.Name))
         {
             throw ResultOutput.Exception($"此部门已存在");
@@ -93,6 +98,11 @@ public class OrgService : BaseService, IOrgService, IDynamicApi
     /// <returns></returns>
     public async Task UpdateAsync(OrgUpdateInput input)
     {
+        if (input.ParentId == 0)
+        {
+            throw ResultOutput.Exception($"请选择上级部门");
+        }
+
         var entity = await _orgRepository.GetAsync(input.Id);
         if (!(entity?.Id > 0))
         {