From 70d86d490bc0144cd21119169b1877b2f9fa507b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=A5=8E=E5=85=B4?= <2220574228@qq.com> Date: Sat, 18 Apr 2026 16:51:24 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BA=93=E5=AD=98=E8=B0=83=E6=95=B4=E8=AE=B0?= =?UTF-8?q?=E5=BD=95=E5=80=92=E5=BA=8F=E6=8E=92=E5=BA=8F;?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../InventoryAdjustmentRecordApplicationService.java | 1 + 1 file changed, 1 insertion(+) diff --git a/mhd_wms/src/main/java/com/mhd/wms/application/service/inventoryAdjustmentRecord/InventoryAdjustmentRecordApplicationService.java b/mhd_wms/src/main/java/com/mhd/wms/application/service/inventoryAdjustmentRecord/InventoryAdjustmentRecordApplicationService.java index 22c5e98b6..c7d9ad0ed 100644 --- a/mhd_wms/src/main/java/com/mhd/wms/application/service/inventoryAdjustmentRecord/InventoryAdjustmentRecordApplicationService.java +++ b/mhd_wms/src/main/java/com/mhd/wms/application/service/inventoryAdjustmentRecord/InventoryAdjustmentRecordApplicationService.java @@ -134,6 +134,7 @@ public class InventoryAdjustmentRecordApplicationService { // 3. 为每个物料明细设置更多属性(从库存表中获取值) setMaterialMoreDetailListFromInventory(inventoryAdjustmentRecordPOS, batchDetailMap); + inventoryAdjustmentRecordPOS.sort(Comparator.comparing(InventoryAdjustmentRecordPO::getCreateTime).reversed()); return inventoryAdjustmentRecordPOS; }