|
@@ -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)
|