自动化立体仓库 - WMS系统
#
luxiaotao1123
2022-04-14 b18f06787ca85aad6bb16a4f4a452a018f3fbf2b
src/main/java/com/zy/asrs/controller/MobileController.java
@@ -84,7 +84,10 @@
    @RequestMapping("/checkDetl/auth")
    @ManagerAuth
    public R getCheckDetl(@RequestParam Integer staNo) {
    public R getCheckDetl(@RequestParam(required = false) Integer staNo) {
        if (null == staNo || staNo == 0) {
            return R.ok();
        }
        BasDevp basDevp = basDevpService.selectById(staNo);
        if (null != basDevp && basDevp.getWrkNo() != null) {
            WrkMast wrkMast = wrkMastService.selectById(basDevp.getWrkNo());
@@ -102,7 +105,7 @@
    @ManagerAuth(memo = "盘点")
    public R adjust(@RequestBody MobileAdjustParam combParam){
        mobileService.adjust(combParam, getUserId());
        return R.ok();
        return R.ok("盘点成功");
    }