Fixed closed issue filter.
This commit is contained in:
parent
986e493706
commit
85287a34cb
1 changed files with 3 additions and 1 deletions
|
@ -544,7 +544,9 @@ public class AgirStatool
|
|||
sql.append("FROM ");
|
||||
sql.append(" issues ");
|
||||
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(" date;");
|
||||
|
||||
|
|
Loading…
Reference in a new issue