自动化立体仓库 - WMS系统
zjj
2023-11-07 beb2ef6184aa6eeef9e9605e7625dec6638d30b1
src/main/java/com/zy/asrs/controller/MobileController.java
@@ -386,7 +386,7 @@
    }
    @RequestMapping("/manDetl/in/origin")
    @ManagerAuth(memo = "订单上架(托盘码)")
    @ManagerAuth(memo = "平库上架")
    public R manDetlin(@RequestBody JSONObject json){
        if (json == null){
            return R.error("传入数据为空");
@@ -394,5 +394,14 @@
        return mobileService.manDetlOrigin(json,getUser());
    }
    @RequestMapping("/manDetl/out/origin")
    @ManagerAuth(memo = "平库下架")
    public R manDetlout(@RequestBody JSONObject json){
        if (json == null){
            return R.error("传入数据为空");
        }
        return mobileService.manDetlOriginOut(json,getUser());
    }
}