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;