From 7480bbec3723f59f828133a41a0895fe3490c6b0 Mon Sep 17 00:00:00 2001 From: "boxu.zheng" Date: Wed, 25 Dec 2024 13:49:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=20=E4=BB=BB=E5=8A=A1?= =?UTF-8?q?=E5=AE=8C=E6=88=90=E5=90=8E=20=E8=AF=B7=E6=B1=82=E7=8A=B6?= =?UTF-8?q?=E6=80=81=E7=9A=84bug=20=E5=92=8C=20agv=E6=89=A7=E8=A1=8C?= =?UTF-8?q?=E5=9B=9E=E8=B0=83=E5=90=8E=E5=BA=93=E5=AD=98=E5=87=BA=E5=BA=93?= =?UTF-8?q?=E5=BA=93=E4=BD=8D=E7=9A=84=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../IssueJobs/AssembleIssueJobs/AssembleIssueJobAppService.cs | 2 +- .../AssembleIssueRequests/AssembleIssueRequestAppService.cs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Jobs/IssueJobs/AssembleIssueJobs/AssembleIssueJobAppService.cs b/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Jobs/IssueJobs/AssembleIssueJobs/AssembleIssueJobAppService.cs index b2e8329f1..a611c85f3 100644 --- a/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Jobs/IssueJobs/AssembleIssueJobs/AssembleIssueJobAppService.cs +++ b/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Jobs/IssueJobs/AssembleIssueJobs/AssembleIssueJobAppService.cs @@ -930,7 +930,7 @@ public class AssembleIssueJobAppService if (!string.IsNullOrEmpty(detail.TransferLibFromLocationCode)) { //库移的最终目标 挪到 推荐的目标 - var fromloc = await _locationAppService.GetByCodeAsync(detail.TransferLibToLocationCode).ConfigureAwait(false); + var fromloc = await _locationAppService.GetByCodeAsync(detail.TransferLibFromLocationCode).ConfigureAwait(false); var toloc =await _locationAppService.GetByCodeAsync(detail.RecommendToLocationCode).ConfigureAwait(false); detailDto.InjectFrom(detail); diff --git a/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Requests/IssuelRequests/AssembleIssueRequests/AssembleIssueRequestAppService.cs b/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Requests/IssuelRequests/AssembleIssueRequests/AssembleIssueRequestAppService.cs index ed7876029..936c9941b 100644 --- a/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Requests/IssuelRequests/AssembleIssueRequests/AssembleIssueRequestAppService.cs +++ b/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Requests/IssuelRequests/AssembleIssueRequests/AssembleIssueRequestAppService.cs @@ -188,7 +188,8 @@ public class AssembleIssueRequestAppService : SfsStoreRequestAppServiceBase p.JobStatus == EnumJobStatus.Open || p.JobStatus == EnumJobStatus.Doing || - p.JobStatus == EnumJobStatus.Partial||p.JobStatus== EnumJobStatus.Wait)) + p.JobStatus == EnumJobStatus.Partial||p.JobStatus== EnumJobStatus.Wait|| + p.JobStatus==EnumJobStatus.WaitAgv)) { return; }