From 220e486b449d4d21abc8f6a5313a116f032a063c Mon Sep 17 00:00:00 2001 From: Administrator Date: Tue, 26 Apr 2022 18:24:51 +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 --- .../Services/Report/UnSettleDiffExportService.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Modules/SettleAccount/src/SettleAccount.Job/Services/Report/UnSettleDiffExportService.cs b/src/Modules/SettleAccount/src/SettleAccount.Job/Services/Report/UnSettleDiffExportService.cs index b1ee4308..247580a3 100644 --- a/src/Modules/SettleAccount/src/SettleAccount.Job/Services/Report/UnSettleDiffExportService.cs +++ b/src/Modules/SettleAccount/src/SettleAccount.Job/Services/Report/UnSettleDiffExportService.cs @@ -346,6 +346,10 @@ namespace SettleAccount.Job.Services.Report itm.UnSettleQty = 1; } itm.DiffQty = itm.Qty - itm.UnSettleQty; + if (itm.DiffQty == 0) + { + itm.DiffAMT = 0; + } }