Commit 042e2846 by Kazuyuki Hida

完了している作業かどうかを調べるSQL文を修正

parent a16388a0
......@@ -522,7 +522,7 @@ public class TaskReportDao extends AbstractDao {
int count;
StringBuilder sql = new StringBuilder();
sql.append("SELECT count(*) FROM t_task_report");
sql.append(" WHERE task_report_info_id > 0");
sql.append(" WHERE task_status = 999 ");
if (reportStartDate == null) {
// 報告
sql.append(" AND task_key=?");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment