From b911b0ac4e5e3938760211a8d8e3c7e1c7ac8b75 Mon Sep 17 00:00:00 2001 From: "boxu.zheng" Date: Thu, 16 May 2024 13:21:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=20=E8=B4=A8=E6=A3=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Jobs/InspectJobs/InspectJobManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Domain/Jobs/InspectJobs/InspectJobManager.cs b/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Domain/Jobs/InspectJobs/InspectJobManager.cs index 1b411b983..2f39dfdeb 100644 --- a/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Domain/Jobs/InspectJobs/InspectJobManager.cs +++ b/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Domain/Jobs/InspectJobs/InspectJobManager.cs @@ -383,7 +383,7 @@ public class InspectJobManager : SfsJobManagerBase detail.Volume = inspectJobDetail.Volume; detail.Appearance = inspectJobDetail.Appearance; detail.OtherPropertyJson = inspectJobDetail.OtherPropertyJson; - detail.InspectQty = inspectJobDetail.InspectQty; + detail.InspectQty = detail.ReceiveQty; detail.GoodQty = 0; detail.NotPassedQty = detail.ReceiveQty; detail.FailedQty = detail.ReceiveQty; @@ -396,7 +396,7 @@ public class InspectJobManager : SfsJobManagerBase detail.Volume = inspectJobDetail.Volume; detail.Appearance = inspectJobDetail.Appearance; detail.OtherPropertyJson = inspectJobDetail.OtherPropertyJson; - detail.InspectQty = inspectJobDetail.InspectQty; + detail.InspectQty = detail.ReceiveQty; detail.GoodQty = detail.ReceiveQty; detail.NotPassedQty = 0; detail.FailedQty = 0;