自动化立体仓库 - WMS系统
#
LSH
2023-12-14 827cf8651cbb734beff52c8bff4dc44a4519436c
src/main/java/com/zy/asrs/controller/MobileController.java
@@ -387,13 +387,22 @@
    @RequestMapping("/manDetl/in/origin")
    @ManagerAuth(memo = "平库上架")
    public R manDetlin(@RequestBody JSONObject json){
    public R manDetlIn(@RequestBody JSONObject json){
        if (json == null){
            return R.error("传入数据为空");
        }
        return mobileService.manDetlOrigin(json,getUser());
    }
    @RequestMapping("/manDetl/in/no/origin")
    @ManagerAuth(memo = "平库上架")
    public R manDetlInNo(@RequestBody JSONObject json){
        if (json == null){
            return R.error("传入数据为空");
        }
        return mobileService.manDetlOrigInNo(json,getUser());
    }
    @RequestMapping("/manDetl/out/origin")
    @ManagerAuth(memo = "平库下架")
    public R manDetlout(@RequestBody JSONObject json){