From 65f280ee9b3b998df59b59cff117624eefae157c Mon Sep 17 00:00:00 2001
From: 陈勇 <chenyong@hnkhzn.com>
Date: 星期四, 14 十一月 2024 09:49:56 +0800
Subject: [PATCH] 忽略项目

---
 Code Management/WMS/WIDESEA_WMSServer/WIDESEA_StoragIntegrationServices/MOM/CellState/CellStateService.cs |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_StoragIntegrationServices/MOM/CellState/CellStateService.cs b/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_StoragIntegrationServices/MOM/CellState/CellStateService.cs
index f5b3c70..3601449 100644
--- a/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_StoragIntegrationServices/MOM/CellState/CellStateService.cs
+++ b/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_StoragIntegrationServices/MOM/CellState/CellStateService.cs
@@ -100,7 +100,7 @@
                 DtBoxingInfo boxingInfo = new DtBoxingInfo()
                 {
                     IsFull = true,
-                    PalletCode = "",
+                    PalletCode = result.TrayBarcode,
                 };
                 var details = new List<DtBoxingInfoDetail>();
                 foreach (var item in result.SerialNos)
@@ -108,9 +108,10 @@
                     DtBoxingInfoDetail detail = new DtBoxingInfoDetail()
                     {
                         SerialNumber = item.SerialNo,
-                        OrderNo = result.BindCode,
+                        OrderNo = item.PositionNo.ToString(),
                         Status = item.SerialNoStatus,
-                        BatchNo = item.PositionNo.ToString()
+                        Remark = result.TrayBarcodePropertys.ToJsonString(),
+                        MaterielCode = result.BindCode,
                     };
                     details.Add(detail);
                 }

--
Gitblit v1.9.3