From bc5fb565163e18b06455752a67591c6c14823fa0 Mon Sep 17 00:00:00 2001 From: zch Date: Tue, 28 Apr 2026 09:05:58 +0800 Subject: [PATCH] =?UTF-8?q?change(=E6=89=B9=E9=87=8F=E5=85=A5=E5=BA=93):?= =?UTF-8?q?=20=E6=8C=89=E7=85=A7=E8=A6=81=E6=B1=82=EF=BC=9A=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E5=88=9B=E5=BB=BA=E4=BA=BA=E3=80=82=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E5=85=A5=E5=BA=93=E6=89=B9=E6=AC=A1=E8=BD=AE=E8=83=8E=E5=88=9B?= =?UTF-8?q?=E5=BB=BA=E4=BA=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ruoyi/system/service/impl/InboundBatchServiceImpl.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/InboundBatchServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/InboundBatchServiceImpl.java index 5ebe06e7..a49e46d7 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/InboundBatchServiceImpl.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/InboundBatchServiceImpl.java @@ -111,6 +111,10 @@ public class InboundBatchServiceImpl implements IInboundBatchService updateTyre.setInventoryStatus("0"); // 入库后库存状态更新为在仓(0=在仓,1=出仓,NULL=已发货待入库) updateTyre.setUpdateBy(operName); // 记录更新人 updateTyre.setUpdateTime(now); // 记录更新时间 + + // 按照杨万里要求:更新创建人 + updateTyre.setCreateBy(operName); + int tyreRows = baseTyreMapper.updateBaseTyre(updateTyre); // 执行更新 if (tyreRows <= 0) {