自动化立体仓库 - WMS系统
#
lsh
2023-12-13 7d9150b95d7db9833de2e57948f5985dfa2a1914
src/main/java/com/zy/asrs/controller/MobileController.java
@@ -385,4 +385,23 @@
        return mobileService.manDetlInBarcode(json,getUser());
    }
    @RequestMapping("/manDetl/in/origin")
    @ManagerAuth(memo = "平库上架")
    public R manDetlin(@RequestBody JSONObject json){
        if (json == null){
            return R.error("传入数据为空");
        }
        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());
    }
}