From f8c592bbe907f5992ee9c5a46507856b586e5ec8 Mon Sep 17 00:00:00 2001 From: cjy Date: Mon, 28 Oct 2024 10:24:07 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=94=B9=E9=85=8D=E9=80=80?= =?UTF-8?q?=E8=88=B1=E6=9C=AA=E5=8F=98=E6=9B=B4=E7=8A=B6=E6=80=81=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DS.WMS.Core/Op/Method/SeaExportRefundService.cs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/ds-wms-service/DS.WMS.Core/Op/Method/SeaExportRefundService.cs b/ds-wms-service/DS.WMS.Core/Op/Method/SeaExportRefundService.cs index 5e84009c..0a9930c4 100644 --- a/ds-wms-service/DS.WMS.Core/Op/Method/SeaExportRefundService.cs +++ b/ds-wms-service/DS.WMS.Core/Op/Method/SeaExportRefundService.cs @@ -339,11 +339,15 @@ namespace DS.WMS.Core.Op.Method info.IsCustoms = false; info.IsLand = false; info.IsVGM = false; - info.BusinessStatus = ""; - info.BusinessStatusName = ""; + info.BusinessStatus = string.Empty; + info.BusinessStatusName = string.Empty; info.OrderProgress = "0"; - await tenantDb.Updateable(info).UpdateColumns(x => new { x.CustomerNo,x.IsBooking,x.IsCustoms,x.IsLand,x.IsVGM,x.OrderProgress }).ExecuteCommandAsync(); + await tenantDb.Updateable(info).UpdateColumns(x => new { + x.CustomerNo, + x.IsBooking,x.IsCustoms,x.IsLand,x.IsVGM,x.OrderProgress, + x.BusinessStatus, x.BusinessStatusName + }).ExecuteCommandAsync(); var oldOrder = entity.Adapt(); entity.IsChangeETD = true;