chen.lin
6 小时以前 c69781e2b78ed7a5ffe9b59c0c555f07deabe735
rsf-server/src/main/java/com/vincent/rsf/server/manager/controller/TaskController.java
@@ -131,6 +131,16 @@
        return R.ok("完成任务成功").add(taskService.operateComplete(id, getLoginUserId()));
    }
    @PreAuthorize("hasAuthority('manager:task:update')")
    @ApiOperation("全版出库完结")
    @PostMapping("/task/complete/fullOutStock/{id}")
    public R completeFullOutStock(@PathVariable Long id) throws Exception {
        if (Cools.isEmpty(id)) {
            throw new CoolException("参数不能为空!!");
        }
        return R.ok("全版出库完结成功").add(taskService.completeFullOutStock(id, getLoginUserId()));
    }
    /**
     * 拣料出库(用于测试拣料出库)
     * @return