Commit 6a9fc469 by onuma

#40991 連続作業OFFの事業者で、報告を一時保存後削除すると、SQLエラーが発生する

parent 8a3a7cc6
......@@ -158,7 +158,7 @@ public class TaskDao extends AbstractDao {
}
/**
* 作業削除
* 作業削除(連続作業でない場合)
* @param taskKey
*/
public void deleteTaskData(String taskKey) {
......@@ -167,7 +167,6 @@ public class TaskDao extends AbstractDao {
delete("t_task_report", "task_key=?", keyValues);
delete("t_task_report_items", "task_key=?", keyValues);
delete("t_task_report_send", "task_key=?", keyValues);
delete("t_task_report_approval", "task_key=?", keyValues);
}
/**
* 作業削除(連続作業用)
......
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