verou
2025-04-09 98d4db97d3c21f9b31f978249c5572fdae948088
rsf-server/src/main/java/com/vincent/rsf/server/api/controller/MobileController.java
@@ -243,4 +243,14 @@
        return mobileService.taskGetLocs(code);
    }
    @ApiOperation("一键收货")
    @PostMapping("/complete/{id}")
    @PreAuthorize("hasAuthority('manager:asnOrder:update')")
    public R completeOrder(@PathVariable Long id) {
        if (Objects.isNull(id)) {
            return R.error("参数不能为空!!");
        }
        return mobileService.completeOrder(id, getLoginUserId());
    }
}