zjj
2025-04-09 5f422797dbc642dcc71b8391fc5fe00ae32920e2
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());
    }
}