From aa7a63dc467600579085b4cb480ad3bda8495ceb Mon Sep 17 00:00:00 2001 From: wanshenmean <cathay_xy@163.com> Date: 星期三, 06 十一月 2024 14:12:00 +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