|
@@ -109,6 +109,98 @@ namespace GxPress.Repository.Implement.WorkFlow
|
|
|
.Where(nameof(FlowTodo.FlowId), flowId)
|
|
|
) > 0;
|
|
|
}
|
|
|
+ /// <summary>
|
|
|
+ /// 已审批
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="userId"></param>
|
|
|
+ /// <param name="type"></param>
|
|
|
+ /// <param name="isDone"></param>
|
|
|
+ /// <param name="request"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<IEnumerable<Flow>> GetMyCheckedTodoIdFlowIdListAsync(int userId, string type, bool isDone, FlowListRequest request)
|
|
|
+ {
|
|
|
+ string sql = $@"
|
|
|
+ SELECT
|
|
|
+ *
|
|
|
+ FROM
|
|
|
+ tede_flow
|
|
|
+ WHERE
|
|
|
+ Id IN (
|
|
|
+ SELECT
|
|
|
+ FlowId
|
|
|
+ FROM
|
|
|
+ tede_flow_todo a
|
|
|
+ INNER JOIN
|
|
|
+ tede_process b ON a.ProcessId = b.id
|
|
|
+ INNER JOIN
|
|
|
+ tede_flow c ON c.Id = a.FlowId
|
|
|
+ INNER JOIN
|
|
|
+ tede_user d on d.Id=a.UserId
|
|
|
+ INNER JOIN
|
|
|
+ tede_user e on e.Id=c.UserId
|
|
|
+ WHERE
|
|
|
+ a.UserId = {userId}
|
|
|
+ AND a.Type = '{type}'";
|
|
|
+ if (isDone)
|
|
|
+ sql += $@"AND a.IsDone = 1";
|
|
|
+ else sql += $@"AND a.IsDone = 0 AND a.IsOperate = 1";
|
|
|
+ if (!string.IsNullOrWhiteSpace(request.Keyword))
|
|
|
+ {
|
|
|
+ sql += $@" AND (b.Name LIKE '%{request.Keyword}%'
|
|
|
+ OR a.FlowId IN (SELECT
|
|
|
+ FlowId
|
|
|
+ FROM
|
|
|
+ tede_flow_field_value
|
|
|
+ WHERE
|
|
|
+ StringValues LIKE '%{request.Keyword}%')
|
|
|
+ OR c.UserId IN (SELECT
|
|
|
+ Id
|
|
|
+ FROM
|
|
|
+ tede_user
|
|
|
+ WHERE
|
|
|
+ Name LIKE '%{request.Keyword}%')
|
|
|
+ or a.FlowId In(SELECT
|
|
|
+ FlowId
|
|
|
+ FROM
|
|
|
+ tede_flow_todo
|
|
|
+ WHERE
|
|
|
+ UserId IN (SELECT
|
|
|
+ Id
|
|
|
+ FROM
|
|
|
+ tede_user
|
|
|
+ WHERE
|
|
|
+ Name LIKE '%{request.Keyword}%'))
|
|
|
+ or a.FlowId In(SELECT
|
|
|
+ FlowId
|
|
|
+ FROM
|
|
|
+ tede_flow_message
|
|
|
+ WHERE
|
|
|
+ Message LIKE '%{request.Keyword}%'))";
|
|
|
+ }
|
|
|
+ if (request.ProcessIds.Count > 0)
|
|
|
+ {
|
|
|
+ var processId = "";
|
|
|
+ foreach (var item in request.ProcessIds)
|
|
|
+ {
|
|
|
+ if (item == 0)
|
|
|
+ continue;
|
|
|
+ processId += $"{item},";
|
|
|
+ }
|
|
|
+ if (!string.IsNullOrWhiteSpace(processId))
|
|
|
+ {
|
|
|
+ processId = processId.Remove(processId.Length - 1, 1);
|
|
|
+ sql += $" AND b.Id IN ({processId})";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ sql += $") ORDER BY a.CreatedDate DESC limit {(request.Page - 1) * request.PerPage},{request.PerPage}";
|
|
|
+ var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
|
|
|
+ var database = new Database(databaseType, _connectionString);
|
|
|
+ var connection = database.GetConnection();
|
|
|
+ var result =
|
|
|
+ await connection
|
|
|
+ .QueryAsync<Flow>(sql);
|
|
|
+ return result;
|
|
|
+ }
|
|
|
|
|
|
public async Task<IEnumerable<(int TodoId, int FlowId)>> GetTodoIdFlowIdListAsync(int userId, string type, bool isDone, FlowListRequest request)
|
|
|
{
|
|
@@ -314,6 +406,7 @@ namespace GxPress.Repository.Implement.WorkFlow
|
|
|
.ExecuteScalarAsync<int>(sql);
|
|
|
return result;
|
|
|
}
|
|
|
+
|
|
|
public async Task<int> GetCountAsync(int userId, string type, bool isDone, FlowListRequest request)
|
|
|
{
|
|
|
|
|
@@ -389,58 +482,97 @@ namespace GxPress.Repository.Implement.WorkFlow
|
|
|
await connection
|
|
|
.ExecuteScalarAsync<int>(sql);
|
|
|
return result;
|
|
|
- // var query = Q
|
|
|
- // .Select(nameof(FlowTodo.FlowId))
|
|
|
- // .WhereNot(nameof(FlowTodo.ProcessId), 0)
|
|
|
- // .Where(nameof(FlowTodo.UserId), userId)
|
|
|
- // .Where(nameof(FlowTodo.Type), type)
|
|
|
- // .Where(nameof(FlowTodo.IsDone), isDone)
|
|
|
- // .OrderByDesc(nameof(FlowTodo.Id));
|
|
|
- // if (type == nameof(TodoTypeConst.ApproverCheck) && !isDone)
|
|
|
- // {
|
|
|
- // query.Where(nameof(FlowTodo.IsOperate), true);
|
|
|
- // }
|
|
|
- // if (request.ProcessIds != null && request.ProcessIds.Any() && !request.ProcessIds.Contains(0))
|
|
|
- // {
|
|
|
- // query.WhereIn(nameof(FlowTodo.ProcessId), request.ProcessIds);
|
|
|
- // }
|
|
|
- // #region 新增
|
|
|
- // if (!string.IsNullOrWhiteSpace(request.Keyword))
|
|
|
- // {
|
|
|
- // //获取用户
|
|
|
- // var users = await _userRepository.GetAllAsync(Q.WhereLike(nameof(Entity.User.Name), $"%{request.Keyword}%"));
|
|
|
- // if (users.Count > 0)
|
|
|
- // {
|
|
|
- // //获取
|
|
|
- // var flow = await _flowRepository.GetAllAsync(Q.WhereIn(nameof(Flow.UserId), users.Select(n => n.Id)));
|
|
|
- // var flowTodosApproverCheck = await _repository.GetAllAsync(Q.WhereIn(nameof(FlowTodo.UserId), users.Select(n => n.Id)).Where(nameof(FlowTodo.Type), "ApproverCheck"));
|
|
|
- // var flowTodosCarbonCopy = await _repository.GetAllAsync(Q.WhereIn(nameof(FlowTodo.UserId), users.Select(n => n.Id)).Where(nameof(FlowTodo.Type), "CarbonCopy"));
|
|
|
- // var flowIds = new List<int>();
|
|
|
- // if (flow.Count > 0)
|
|
|
- // flowIds.AddRange(flow.Select(n => n.Id));
|
|
|
- // //审批人
|
|
|
- // if (flowTodosApproverCheck.Count > 0)
|
|
|
- // flowIds.AddRange(flowTodosApproverCheck.Select(n => n.FlowId));
|
|
|
- // //抄送人
|
|
|
- // if (flowTodosCarbonCopy.Count > 0)
|
|
|
- // flowIds.AddRange(flowTodosCarbonCopy.Select(n => n.FlowId));
|
|
|
- // query.WhereIn(nameof(FlowTodo.FlowId), flowIds);
|
|
|
- // }
|
|
|
- // else
|
|
|
- // {
|
|
|
- // var flowFieldValues = await _flowFieldValueRepository.GetAllAsync(Q.WhereLike(nameof(FlowFieldValue.StringValue), $"%{request.Keyword}%"));
|
|
|
- // query.WhereIn(nameof(Flow.Id), flowFieldValues.Select(n => n.FlowId));
|
|
|
- // if (flowFieldValues.Count() == 0)
|
|
|
- // {
|
|
|
- // var processList = await _processRepository.GetAllAsync(Q.WhereLike(nameof(Entity.WorkProcess.Process.Name), $"%{request.Keyword}%"));
|
|
|
- // query.WhereIn(nameof(Flow.ProcessId), processList.Select(n => n.Id));
|
|
|
- // }
|
|
|
- // else
|
|
|
- // query.WhereIn(nameof(Flow.Id), flowFieldValues.Select(n => n.FlowId));
|
|
|
- // }
|
|
|
- // }
|
|
|
- // #endregion
|
|
|
- // return await _repository.CountAsync(query);
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 已审批数量
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="userId"></param>
|
|
|
+ /// <param name="type"></param>
|
|
|
+ /// <param name="isDone"></param>
|
|
|
+ /// <param name="request"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<int> GetMyCheckedCountAsync(int userId, string type, bool isDone, FlowListRequest request)
|
|
|
+ {
|
|
|
+ string sql = $@"
|
|
|
+ SELECT
|
|
|
+ count(1)
|
|
|
+ FROM
|
|
|
+ tede_flow
|
|
|
+ WHERE
|
|
|
+ Id IN (
|
|
|
+ SELECT
|
|
|
+ a.FlowId
|
|
|
+ FROM
|
|
|
+ tede_flow_todo a
|
|
|
+ INNER JOIN
|
|
|
+ tede_process b ON a.ProcessId = b.id
|
|
|
+ INNER JOIN
|
|
|
+ tede_flow c ON c.Id = a.FlowId
|
|
|
+ INNER JOIN
|
|
|
+ tede_user d on d.Id=a.UserId
|
|
|
+ INNER JOIN
|
|
|
+ tede_user e on e.Id=c.UserId
|
|
|
+ WHERE
|
|
|
+ a.UserId = {userId}
|
|
|
+ AND a.Type = '{type}'";
|
|
|
+ if (isDone)
|
|
|
+ sql += $@" AND a.IsDone = 1";
|
|
|
+ else sql += $@" AND a.IsDone = 0 AND a.IsOperate = 1";
|
|
|
+ if (!string.IsNullOrWhiteSpace(request.Keyword))
|
|
|
+ {
|
|
|
+ sql += $@" AND (b.Name LIKE '%{request.Keyword}%'
|
|
|
+ OR a.FlowId IN (SELECT
|
|
|
+ FlowId
|
|
|
+ FROM
|
|
|
+ tede_flow_field_value
|
|
|
+ WHERE
|
|
|
+ StringValues LIKE '%{request.Keyword}%')
|
|
|
+ OR c.UserId IN (SELECT
|
|
|
+ Id
|
|
|
+ FROM
|
|
|
+ tede_user
|
|
|
+ WHERE
|
|
|
+ Name LIKE '%{request.Keyword}%') or a.FlowId In(SELECT
|
|
|
+ FlowId
|
|
|
+ FROM
|
|
|
+ tede_flow_todo
|
|
|
+ WHERE
|
|
|
+ UserId IN (SELECT
|
|
|
+ Id
|
|
|
+ FROM
|
|
|
+ tede_user
|
|
|
+ WHERE
|
|
|
+ Name LIKE '%{request.Keyword}%'))
|
|
|
+ or a.FlowId In(SELECT
|
|
|
+ FlowId
|
|
|
+ FROM
|
|
|
+ tede_flow_message
|
|
|
+ WHERE
|
|
|
+ Message LIKE '%{request.Keyword}%'))";
|
|
|
+ }
|
|
|
+ if (request.ProcessIds.Count > 0)
|
|
|
+ {
|
|
|
+ var processId = "";
|
|
|
+ foreach (var item in request.ProcessIds)
|
|
|
+ {
|
|
|
+ if (item == 0)
|
|
|
+ continue;
|
|
|
+ processId += $"{item},";
|
|
|
+ }
|
|
|
+ if (!string.IsNullOrWhiteSpace(processId))
|
|
|
+ {
|
|
|
+ processId = processId.Remove(processId.Length - 1, 1);
|
|
|
+ sql += $" AND b.Id IN ({processId})";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ sql += ")";
|
|
|
+ var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
|
|
|
+ var database = new Database(databaseType, _connectionString);
|
|
|
+ var connection = database.GetConnection();
|
|
|
+ var result =
|
|
|
+ await connection
|
|
|
+ .ExecuteScalarAsync<int>(sql);
|
|
|
+ return result;
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 未读数量
|