|
@@ -409,16 +409,15 @@ namespace GxPress.Repository.Implement.WorkFlow
|
|
|
|
|
|
public async Task<int> GetCountAsync(int userId, string type, bool isDone, FlowListRequest request)
|
|
|
{
|
|
|
-
|
|
|
string sql = $@"SELECT
|
|
|
- count(1)
|
|
|
+ count(1)
|
|
|
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
|
|
|
+ INNER JOIN
|
|
|
tede_user d on d.Id=a.UserId
|
|
|
INNER JOIN
|
|
|
tede_user e on e.Id=c.UserId
|
|
@@ -426,8 +425,8 @@ namespace GxPress.Repository.Implement.WorkFlow
|
|
|
a.UserId = {userId}
|
|
|
AND a.Type = '{type}'";
|
|
|
if (isDone)
|
|
|
- sql += $@" AND a.IsDone = 1";
|
|
|
- else sql += $@" AND a.IsDone = 0 AND a.IsOperate = 1";
|
|
|
+ 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}%'
|
|
@@ -442,7 +441,8 @@ namespace GxPress.Repository.Implement.WorkFlow
|
|
|
FROM
|
|
|
tede_user
|
|
|
WHERE
|
|
|
- Name LIKE '%{request.Keyword}%') or a.FlowId In(SELECT
|
|
|
+ Name LIKE '%{request.Keyword}%')
|
|
|
+ or a.FlowId In(SELECT
|
|
|
FlowId
|
|
|
FROM
|
|
|
tede_flow_todo
|
|
@@ -453,7 +453,7 @@ namespace GxPress.Repository.Implement.WorkFlow
|
|
|
tede_user
|
|
|
WHERE
|
|
|
Name LIKE '%{request.Keyword}%'))
|
|
|
- or a.FlowId In(SELECT
|
|
|
+ or a.FlowId In(SELECT
|
|
|
FlowId
|
|
|
FROM
|
|
|
tede_flow_message
|