From 5eaf8a688d29c7e18b1147682d753a05b2ddda46 Mon Sep 17 00:00:00 2001 From: "han\\hanst" Date: Fri, 5 Dec 2025 15:36:51 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9C=89=E6=95=88=E6=9C=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/production/entity/dto/ShopOrderInboundDto.java | 5 +++++ .../service/impl/ProductionInboundServiceImpl.java | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/gaotao/modules/production/entity/dto/ShopOrderInboundDto.java b/src/main/java/com/gaotao/modules/production/entity/dto/ShopOrderInboundDto.java index 206beae..4904e51 100644 --- a/src/main/java/com/gaotao/modules/production/entity/dto/ShopOrderInboundDto.java +++ b/src/main/java/com/gaotao/modules/production/entity/dto/ShopOrderInboundDto.java @@ -108,6 +108,11 @@ public class ShopOrderInboundDto { private String ifsAutoClose; + /** + * 有效期 (yyyy-MM-dd格式) + */ + private String ifsExpiryDate; + /** * 处理单元列表 */ diff --git a/src/main/java/com/gaotao/modules/production/service/impl/ProductionInboundServiceImpl.java b/src/main/java/com/gaotao/modules/production/service/impl/ProductionInboundServiceImpl.java index 7b3c6bb..eb7935a 100644 --- a/src/main/java/com/gaotao/modules/production/service/impl/ProductionInboundServiceImpl.java +++ b/src/main/java/com/gaotao/modules/production/service/impl/ProductionInboundServiceImpl.java @@ -848,7 +848,7 @@ public class ProductionInboundServiceImpl implements ProductionInboundService { params.put("domainUserID", domainUserID); params.put("ifsContract", dto.getSite()); params.put("ifsLotBatchNo", dto.getBatchNo()); - params.put("ifsExpiryDate", null); + params.put("ifsExpiryDate", dto.getIfsExpiryDate()); params.put("ifsOrderNo", dto.getOrderNo()); params.put("ifsReleaseNo", dto.getReleaseNo()); params.put("ifsSequenceNo", dto.getSequenceNo());