自动化立体仓库 - WMS系统
zwl
4 天以前 73f677ac03ebcf0f9d2e865dd60d3e4a6c2bc2c9
src/main/java/com/zy/asrs/controller/OpenController.java
@@ -528,6 +528,7 @@
     */
    @PostMapping("/outOrder")
    public synchronized R outOrder(@RequestBody ArrayList<OutTaskParam> params, HttpServletRequest request) {
        int count = params.size();
        if (Cools.isEmpty(params)) {
            return R.error("请求参数不能为空");
        }
@@ -645,7 +646,7 @@
            return R.error("没有找到托盘码对应库位:" + String.join(",", badPalletIds)).add(missingLoc);
        }
        return openService.outOrderBatch(linesByBatchSeq);
        return openService.outOrderBatch(linesByBatchSeq,count);
    }
    /**