From 61143a39f76c3caa9e676f23b45db9435cd39c32 Mon Sep 17 00:00:00 2001 From: "UNISINSIGHT\\rdpnr_jiangpeng" Date: Wed, 25 Mar 2026 14:17:58 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E6=95=B0=E6=8D=AE=E5=90=8C?= =?UTF-8?q?=E6=AD=A5=E6=96=B0=E5=8D=8E=E4=B8=89=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/ruoyi/sip/service/impl/ExecutionTrackServiceImpl.java | 1 + .../com/ruoyi/sip/service/impl/InventoryDeliveryServiceImpl.java | 1 + 2 files changed, 2 insertions(+) diff --git a/ruoyi-sip/src/main/java/com/ruoyi/sip/service/impl/ExecutionTrackServiceImpl.java b/ruoyi-sip/src/main/java/com/ruoyi/sip/service/impl/ExecutionTrackServiceImpl.java index 4c78a3ae..14b17a26 100644 --- a/ruoyi-sip/src/main/java/com/ruoyi/sip/service/impl/ExecutionTrackServiceImpl.java +++ b/ruoyi-sip/src/main/java/com/ruoyi/sip/service/impl/ExecutionTrackServiceImpl.java @@ -292,6 +292,7 @@ public class ExecutionTrackServiceImpl implements IExecutionTrackService { InventoryDelivery updateDelivery = new InventoryDelivery(); updateDelivery.setId(inventoryDeliverie.getId()); updateDelivery.setDeliveryStatus(InventoryDelivery.DeliveryStatusEnum.RECALL_DELIVERY.getCode()); + updateDelivery.setUpdateTime(DateUtils.getNowDate()); deliveryMapper.updateInventoryDelivery(updateDelivery); } } diff --git a/ruoyi-sip/src/main/java/com/ruoyi/sip/service/impl/InventoryDeliveryServiceImpl.java b/ruoyi-sip/src/main/java/com/ruoyi/sip/service/impl/InventoryDeliveryServiceImpl.java index 33377df3..ec562bc2 100644 --- a/ruoyi-sip/src/main/java/com/ruoyi/sip/service/impl/InventoryDeliveryServiceImpl.java +++ b/ruoyi-sip/src/main/java/com/ruoyi/sip/service/impl/InventoryDeliveryServiceImpl.java @@ -339,6 +339,7 @@ public class InventoryDeliveryServiceImpl implements IInventoryDeliveryService { inventoryDelivery = new InventoryDelivery(); inventoryDelivery.setId(id); inventoryDelivery.setDeliveryStatus(InventoryDelivery.DeliveryStatusEnum.RECALL_DELIVERY.getCode()); + inventoryDelivery.setUpdateTime(DateUtils.getNowDate()); return inventoryDeliveryMapper.updateInventoryDelivery(inventoryDelivery); } }