From 8127d7e6c454aec26e3f5dc07728ee0c9d63730d Mon Sep 17 00:00:00 2001 From: "boxu.zheng" Date: Thu, 16 Jan 2025 11:10:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AE=A2=E6=88=B7=E9=80=80?= =?UTF-8?q?=E8=B4=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CustomerProductionReturnNoteAppService.cs | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Notes/CustomerProductionReturnNotes/CustomerProductionReturnNoteAppService.cs b/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Notes/CustomerProductionReturnNotes/CustomerProductionReturnNoteAppService.cs index 54596b952..fb33c309a 100644 --- a/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Notes/CustomerProductionReturnNotes/CustomerProductionReturnNoteAppService.cs +++ b/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Notes/CustomerProductionReturnNotes/CustomerProductionReturnNoteAppService.cs @@ -161,14 +161,11 @@ public class CustomerProductionReturnNoteAppService : } foreach (var itm in entity.Details) { - itm.FromLocationCode = "OK"; - itm.FromStatus = EnumInventoryStatus.OK; - itm.ToStatus=EnumInventoryStatus.OK; - itm.FromLocationArea = "OK"; - itm.FromLocationErpCode= "OK"; - itm.FromWarehouseCode = "OK"; - itm.FromLocationGroup = "OK"; - itm.FromContainerCode = "OK"; + itm.FromLocationCode = ""; + itm.FromLocationArea = ""; + itm.FromLocationErpCode = ""; + itm.FromWarehouseCode = ""; + itm.FromLocationGroup = ""; itm.ToContainerCode =string.IsNullOrEmpty(itm.ToContainerCode)? "OK": itm.ToContainerCode; itm.ToWarehouseCode= string.IsNullOrEmpty(itm.ToWarehouseCode)? "OK": itm.ToContainerCode; }