update:
执行任务按钮校验任务状态防止重复发起
This commit is contained in:
parent
17f5ddbfa0
commit
e6995b99a3
@ -523,6 +523,9 @@ public class CurrTaskServiceImpl extends BaseService implements CurrTaskService
|
|||||||
@Override
|
@Override
|
||||||
public R runTask(Long taskId) throws InterruptedException, IOException {
|
public R runTask(Long taskId) throws InterruptedException, IOException {
|
||||||
CurrTask currTask = currTaskServiceBiz.getById(taskId);
|
CurrTask currTask = currTaskServiceBiz.getById(taskId);
|
||||||
|
if (currTask.getStatus()!=0){
|
||||||
|
return R.failed("该任务状态不为未执行,无法执行!");
|
||||||
|
}
|
||||||
//是否为自动任务
|
//是否为自动任务
|
||||||
if (currTask.getIsAuto()==1){
|
if (currTask.getIsAuto()==1){
|
||||||
List<AutoExeTask> exeTaskList = autoExeTaskServiceBiz.list(new QueryWrapper<AutoExeTask>().eq(AutoExeTask.F_TASK_ID, taskId));
|
List<AutoExeTask> exeTaskList = autoExeTaskServiceBiz.list(new QueryWrapper<AutoExeTask>().eq(AutoExeTask.F_TASK_ID, taskId));
|
||||||
|
Loading…
Reference in New Issue
Block a user