Fixed closed issue filter.

This commit is contained in:
Christian P. MOMON 2020-02-05 16:21:16 +01:00
parent 986e493706
commit 85287a34cb
1 changed files with 3 additions and 1 deletions

View File

@ -544,7 +544,9 @@ public class AgirStatool
sql.append("FROM "); sql.append("FROM ");
sql.append(" issues "); sql.append(" issues ");
sql.append("WHERE "); sql.append("WHERE ");
sql.append(" project_id in (" + subSql.toString() + ") and closed_on is not null "); // sql.append(" project_id in (" + subSql.toString() + ") and
// closed_on is not null and status_id <> 16 ");
sql.append(" project_id in (" + subSql.toString() + ") and status_id in (3, 5, 6) ");
sql.append("GROUP BY "); sql.append("GROUP BY ");
sql.append(" date;"); sql.append(" date;");