From b7f7c177ff4334f3a293ded0ebbe12fbcdb7a9c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A6=20=E8=B5=B5?= <89237069@qq.com> Date: Thu, 16 Jan 2025 10:05:04 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CustomerProductionReturnNoteAppService.cs | 16 ++++++++-------- 1 file changed, 8 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..5a4d0c2d3 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,16 +161,16 @@ public class CustomerProductionReturnNoteAppService : } foreach (var itm in entity.Details) { - itm.FromLocationCode = "OK"; + itm.FromLocationCode = ""; itm.FromStatus = EnumInventoryStatus.OK; itm.ToStatus=EnumInventoryStatus.OK; - itm.FromLocationArea = "OK"; - itm.FromLocationErpCode= "OK"; - itm.FromWarehouseCode = "OK"; - itm.FromLocationGroup = "OK"; - itm.FromContainerCode = "OK"; - itm.ToContainerCode =string.IsNullOrEmpty(itm.ToContainerCode)? "OK": itm.ToContainerCode; - itm.ToWarehouseCode= string.IsNullOrEmpty(itm.ToWarehouseCode)? "OK": itm.ToContainerCode; + itm.FromLocationArea = ""; + itm.FromLocationErpCode= ""; + itm.FromWarehouseCode = ""; + itm.FromLocationGroup = ""; + itm.FromContainerCode = ""; + itm.ToContainerCode =string.IsNullOrEmpty(itm.ToContainerCode)? "": itm.ToContainerCode; + itm.ToWarehouseCode= string.IsNullOrEmpty(itm.ToWarehouseCode)? "": itm.ToContainerCode; } await _CustomerProductionReturnNoteManager.CreateAsync(entity).ConfigureAwait(false);