|
@@ -15,6 +15,7 @@ using Microsoft.Extensions.Caching.Distributed;
|
|
|
using Microsoft.Extensions.Options;
|
|
|
using ProcessNode = GxPress.Entity.WorkProcess.ProcessNode;
|
|
|
|
|
|
+
|
|
|
namespace GxPress.Repository.Implement.WorkProcess
|
|
|
{
|
|
|
public partial class ProcessRepository : IProcessRepository
|
|
@@ -31,7 +32,6 @@ namespace GxPress.Repository.Implement.WorkProcess
|
|
|
private readonly IDepartmentRepository _departmentRepository;
|
|
|
private readonly IRoleRepository _roleRepository;
|
|
|
private readonly IUserRepository _userRepository;
|
|
|
-
|
|
|
public ProcessRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper,
|
|
|
IDistributedCache cache,
|
|
|
IProcessFieldRepository processFieldRepository,
|
|
@@ -120,7 +120,8 @@ namespace GxPress.Repository.Implement.WorkProcess
|
|
|
|
|
|
public async Task<IEnumerable<Process>> GetListByDepartmentIdAsync(int departmentId)
|
|
|
{
|
|
|
- var processIdList = await _processRequestLimitRepository.GetProcessIdListByDepartmentIdAsync(departmentId);
|
|
|
+ var departmentIds = await GetDepartmentIdsAsync(departmentId, new List<int>());
|
|
|
+ var processIdList = await _processRequestLimitRepository.GetProcessIdListByDepartmentIdAsync(departmentIds);
|
|
|
var result = await _repository.GetAllAsync(Q
|
|
|
.WhereIn(nameof(Process.Id), processIdList)
|
|
|
.OrWhere(nameof(Process.LimitType), nameof(LimitTypeConst.NoLimit))
|
|
@@ -132,6 +133,21 @@ namespace GxPress.Repository.Implement.WorkProcess
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ public async Task<List<int>> GetDepartmentIdsAsync(int departmentId, List<int> departmentIds)
|
|
|
+ {
|
|
|
+ var department = await _departmentRepository.GetAsync(departmentId);
|
|
|
+ departmentIds.Add(department.Id);
|
|
|
+ if (department != null && department.ParentId > 0)
|
|
|
+ {
|
|
|
+ department = await _departmentRepository.GetAsync(department.ParentId);
|
|
|
+ departmentIds.Add(department.Id);
|
|
|
+ if (department.ParentId > 0)
|
|
|
+ await GetDepartmentIdsAsync(department.ParentId, departmentIds);
|
|
|
+ }
|
|
|
+ return departmentIds;
|
|
|
+ }
|
|
|
+
|
|
|
public async Task<ProcessBaseInfoResult> GetBaseInfoAsync(int id)
|
|
|
{
|
|
|
var process = await _repository.GetAsync(id);
|