From 7169630eedc9659f3e9a0f2d826c551ce793d842 Mon Sep 17 00:00:00 2001 From: chenwenkai <1084072318@qq.com> Date: Sun, 26 Jan 2025 10:46:05 +0800 Subject: [PATCH] =?UTF-8?q?GetAllTemuShipOrderChannels=20=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0channelId=20PostTemuShipOrder=20=E4=BC=A0=E5=85=A5ship?= =?UTF-8?q?CompanyId=E5=8F=AF=E4=B8=BAnull?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TradeManageNew/DD_OrderServiceNew.asmx.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/TradeManageNew/DD_OrderServiceNew.asmx.cs b/TradeManageNew/DD_OrderServiceNew.asmx.cs index 649f2c5..23aea08 100644 --- a/TradeManageNew/DD_OrderServiceNew.asmx.cs +++ b/TradeManageNew/DD_OrderServiceNew.asmx.cs @@ -27152,7 +27152,7 @@ namespace TradeManageNew /// /// [WebMethod(EnableSession = true)] - public APIReturnModel PostTemuShipOrder(int orderid, decimal dlength, decimal dwidth, decimal dheight, decimal dweight, string warehouseId,long channelId,long shipCompanyId, int sendType,string channelText) + public APIReturnModel PostTemuShipOrder(int orderid, decimal dlength, decimal dwidth, decimal dheight, decimal dweight, string warehouseId,long channelId,long? shipCompanyId, int sendType,string channelText) { Pages.Login(this.Session); var rmodel = new APIReturnModel(); @@ -28154,7 +28154,8 @@ namespace TradeManageNew cmd.shipLogisticsType = fmd.ShipLogisticsType; cmd.shippingCompanyName = fmd.ShippingCompanyName; cmd.estimatedText = fmd.EstimatedText; - //cmd.channelId = fmd.ChannelId; + cmd.channelId = fmd.ChannelId; + temuChannels2.Add(cmd); } rmodel.Datas = temuChannels2.OrderBy(r => r.postPrice);