自动化立体仓库 - WMS系统
LSH
2023-07-17 02ee07a5934873051506ba8382ae87f82b0ce28e
src/main/java/com/zy/asrs/controller/MobileController.java
@@ -347,7 +347,7 @@
        if (json == null){
            return R.error("传入数据为空");
        }
        return mobileService.manDetlIn(json);
        return mobileService.manDetlIn(json, getUser());
    }
    //平库pda下架
@@ -357,7 +357,16 @@
        if (json == null){
            return R.error("传入数据为空");
        }
        return mobileService.manDetlOut(json);
        return mobileService.manDetlOut(json , getUser());
    }
    @RequestMapping("/manDetl/in/barcode")
    @ManagerAuth(memo = "订单上架(托盘码)")
    public R manDetlAddbarcode(@RequestBody JSONObject json){
        if (json == null){
            return R.error("传入数据为空");
        }
        return mobileService.manDetlInBarcode(json,getUser());
    }
}