自动化立体仓库 - WMS系统
zyx
2023-12-22 8b5b019716e49f54fcc016814a3c432a4a32db75
src/main/java/com/zy/asrs/controller/MobileController.java
@@ -340,7 +340,7 @@
    }
    @RequestMapping("/adjustNew/auth")
    @ManagerAuth(memo = "盘点")
    @ManagerAuth(memo = "pda盘点")
    public R adjustNew(@RequestBody MobileAdjustNewParam combParam){
        mobileService.adjustNew(combParam, getUserId());
        return R.ok("盘点成功");
@@ -385,4 +385,32 @@
        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/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){
        if (json == null){
            return R.error("传入数据为空");
        }
        return mobileService.manDetlOriginOut(json,getUser());
    }
}