From 068a221025ffe209b25f00642f9bcd1e28861fe0 Mon Sep 17 00:00:00 2001 From: schangxiang@126.com <schangxiang@126.com> Date: 周四, 16 10月 2025 15:58:42 +0800 Subject: [PATCH] 本次请求中物料号不能重复修复 --- DEmon/iWareCc/Conveyor/Service/GateService.cs | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/DEmon/iWareCc/Conveyor/Service/GateService.cs b/DEmon/iWareCc/Conveyor/Service/GateService.cs index 967a7d3..0c289d8 100644 --- a/DEmon/iWareCc/Conveyor/Service/GateService.cs +++ b/DEmon/iWareCc/Conveyor/Service/GateService.cs @@ -327,7 +327,7 @@ GateDatagramProp prop = new GateDatagramAnalyze().SCAnalyze(ASCIIEncoding.ASCII.GetBytes(msg)); if (!string.IsNullOrEmpty(prop.MaterialCode)) { - GateEntity.RCheckMaterialCode = prop.MaterialCode.Replace("\r", "").Replace("\0", "").Trim(); + GateEntity.RCheckMaterialCode = prop.MaterialCode.Replace("\r","").Replace("\0","").Trim(); } } catch (Exception ex) -- Gitblit v1.9.3