Commit 1954256b by Kazuyuki Hida

ロックによる更新時のSQL文が間違っていてアプリが落ちていた

parent e6a8f915
...@@ -245,7 +245,7 @@ public class TaskReportDao extends AbstractDao { ...@@ -245,7 +245,7 @@ public class TaskReportDao extends AbstractDao {
sql.append(" report_lock_time=? "); sql.append(" report_lock_time=? ");
sql.append(" WHERE task_key=? "); sql.append(" WHERE task_key=? ");
if (reportStartDate != null) { if (reportStartDate != null) {
sql.append("AND datetime(report_start_date)=datetime(?);"); sql.append("AND datetime(report_start_date)=datetime(?) ");
} }
if (loginId != null) { if (loginId != null) {
sql.append(" AND report_lock_user_id <> ? "); //自分以外のロックを変更しないため sql.append(" AND report_lock_user_id <> ? "); //自分以外のロックを変更しないため
......
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