自动化立体仓库 - WMS系统
李天宇
2024-10-25 c560649e37ab5a5bc29c47a3fa7309dc912b48cb
src/main/java/com/zy/asrs/controller/OrderController.java
@@ -391,11 +391,11 @@
            Row row = sheet.getRow(i);
            // 订单编号
            String uuid = dataFormatter.formatCellValue(row.getCell(0));
            // 品号
            // 品名
            String maktx = dataFormatter.formatCellValue(row.getCell(1));
            // 物料号
            // 品号
            String matnr = dataFormatter.formatCellValue(row.getCell(2));
            // 物料号
            // 品号
            String batch = dataFormatter.formatCellValue(row.getCell(3));
            // 数量
            Double anfme = Double.parseDouble(dataFormatter.formatCellValue(row.getCell(4)));
@@ -420,7 +420,7 @@
            Mat mat = matService.selectByMatnr(matnr);
            if (null == mat) {
                throw new CoolException(matnr + "物料号的商品不存在,请重新导入!");
                throw new CoolException(matnr + "品号的商品不存在,请重新导入!");
            }
            Order order = orderService.selectByNo(uuid);