finishQuantity计算bug修改
This commit is contained in:
lgh 2022-08-15 11:05:34 +08:00
parent 1616215534
commit dd1a4b448e
2 changed files with 6 additions and 1 deletions

View File

@ -88,7 +88,7 @@ public class TaskDetHisServiceImpl extends BaseService implements TaskDetHisServ
//如果是多步骤任务且不是第一步,移除对象
if (byId.getIsAuto()==1){
AutoExeTask autoExeTask = autoExeTaskServiceBiz.getById(byId.getAutoExeTaskId());
if (!byId.getId().equals(autoExeTask.getFTaskId())){
if (!byId.getTaskId().equals(autoExeTask.getFTaskId())){
iterator.remove();
}
}

View File

@ -138,4 +138,9 @@ public class CurrTaskVo extends BaseVo implements PageVo.ConvertVo {
*/
@TableField("auto_exe_task_id")
private Long autoExeTaskId;
/**
* currid
*/
@TableField("auto_exe_task_id")
private Long taskId;
}