李昊 4 years ago
parent
commit
78146c6dd6

+ 11 - 0
GxPress/Api/GxPress.Api/AdminControllers/AdminDepartmentController.cs

@@ -3,6 +3,7 @@ using System.IO;
 using System.Threading.Tasks;
 using GxPress.Entity;
 using GxPress.Repository.Interface;
+using GxPress.Request.Department;
 using GxPress.Result.Department;
 using GxPress.Service.Interface.Department;
 using Microsoft.AspNetCore.Authorization;
@@ -91,5 +92,15 @@ namespace GxPress.Api.AdminControllers
         {
             return await _departmentRepository.GetTreeAsync();
         }
+        /// <summary>
+        /// 部门移动
+        /// </summary>
+        /// <param name="request"></param>
+        /// <returns></returns>
+        [HttpPut("sort")]
+        public async Task<bool> SetSortAsync(DepartmentSortRequest request)
+        {
+            return await _departmentRepository.SetSortAsync(request);
+        }
     }
 }

+ 16 - 2
GxPress/Model/GxPress.Request/Department/DepartmentUserRequest.cs

@@ -1,10 +1,24 @@
-using System;
 using System.Collections.Generic;
-using System.Text;
 
 namespace GxPress.Request.Department
 {
     /// <summary>
+    /// 部门排序
+    /// </summary>
+    public class DepartmentSortRequest
+    {
+        /// <summary>
+        /// 移动到的位置
+        /// </summary>
+        /// <value></value>
+        public int RemoveId { get; set; }
+        /// <summary>
+        /// 起始位置
+        /// </summary>
+        /// <value></value>
+        public int StartId { get; set; }
+    }
+    /// <summary>
     /// 部门人员
     /// </summary>
     public class DepartmentUserRequest

+ 30 - 0
GxPress/Repository/GxPress.Repository.Implement/DepartmentRepository.cs

@@ -12,6 +12,7 @@ using GxPress.Request.Department;
 using GxPress.Result.Department;
 using Microsoft.Extensions.Options;
 using Datory;
+using System.Transactions;
 
 namespace GxPress.Repository.Implement
 {
@@ -230,6 +231,35 @@ namespace GxPress.Repository.Implement
             }
             return list;
         }
+        /// <summary>
+        /// 部门移动
+        /// </summary>
+        /// <param name="request"></param>
+        /// <returns></returns>
+        public async Task<bool> SetSortAsync(DepartmentSortRequest request)
+        {
+            try
+            {
+                using (var tran = new TransactionScope())
+                {
+                    var startDto = await _repository.GetAsync(request.StartId);
+                    var startSort = startDto.Sort;
+                    var removeDto = await _repository.GetAsync(request.RemoveId);
+                    var removeSort = removeDto.Sort;
+                    //修改
+                    startDto.Sort = removeSort;
+                    await _repository.UpdateAsync(startDto);
+                    removeDto.Sort = startSort;
+                    await _repository.UpdateAsync(removeDto);
+                    tran.Complete();
+                }
+            }
+            catch
+            {
+                return false;
+            }
+            return true;
+        }
         public List<DepartmentTreeResult> GetTreeAsync(List<Department> departments, int id, List<DepartmentTreeResult> items)
         {
             foreach (var item in items)

+ 7 - 1
GxPress/Repository/GxPress.Repository.Interface/IDepartmentRepository.cs

@@ -88,11 +88,17 @@ namespace GxPress.Repository.Interface
         Task<List<Department>> GetDepartmentByPid(int Pid, List<Department> departments);
 
         Task<IEnumerable<Department>> GetAllAsync(SqlKata.Query query);
-          /// <summary>
+        /// <summary>
         /// 获取树列表
         /// </summary>
         /// <param name="id"></param>
         /// <returns></returns>
         Task<List<DepartmentTreeResult>> GetTreeAsync();
+        /// <summary>
+        /// 部门移动
+        /// </summary>
+        /// <param name="request"></param>
+        /// <returns></returns>
+        Task<bool> SetSortAsync(DepartmentSortRequest request);
     }
 }