From 4466d31db858c84a8758eaf0d797e33a64aa22eb Mon Sep 17 00:00:00 2001 From: zxy Date: Wed, 1 Apr 2026 08:40:49 +0800 Subject: [PATCH] =?UTF-8?q?fix(wmsstorage):=20=E4=BF=AE=E6=AD=A3=E5=AF=BC?= =?UTF-8?q?=E5=87=BA=E8=A1=A8=E6=A0=BC=E4=B8=AD=E5=BA=93=E5=AD=98=E7=BC=96?= =?UTF-8?q?=E5=8F=B7=E6=98=BE=E7=A4=BA=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../heli/controller/admin/wmsstorage/WmsStorageController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mes-module-heli/mes-module-heli-biz/src/main/java/com/chanko/yunxi/mes/module/heli/controller/admin/wmsstorage/WmsStorageController.java b/mes-module-heli/mes-module-heli-biz/src/main/java/com/chanko/yunxi/mes/module/heli/controller/admin/wmsstorage/WmsStorageController.java index ef7e4bbb..8453538a 100644 --- a/mes-module-heli/mes-module-heli-biz/src/main/java/com/chanko/yunxi/mes/module/heli/controller/admin/wmsstorage/WmsStorageController.java +++ b/mes-module-heli/mes-module-heli-biz/src/main/java/com/chanko/yunxi/mes/module/heli/controller/admin/wmsstorage/WmsStorageController.java @@ -194,7 +194,7 @@ public class WmsStorageController { if (wmsStorage.getDetailList() != null) { for (WmsStorageDetailDO detail : wmsStorage.getDetailList()) { Row row = sheet1.createRow(rowIndex++); - setCellValue(row.createCell(0), detail.getStockNo()); + setCellValue(row.createCell(0), wmsStorage.getStockNo()); setCellValue(row.createCell(1), detail.getMatCode()); setCellValue(row.createCell(2), detail.getRgName()); setCellValue(row.createCell(3), detail.getStockNum());