FLH 1 mese fa
parent
commit
5aaea2742f

+ 2 - 2
3.Service/XYY.Service.Standard.Finance/IFinance_Customer_SupplementService.cs

@@ -62,8 +62,8 @@ namespace XYY.Service.Standard.Finance
 
         public void AddMQ(List<Finance_Customer_SupplementNew> supplementNews)
         {
-            string baseUrl = $"http://localhost:22707/api/Finance/AddSupplementMQ";
-            //string baseUrl = $"http://120.24.149.148/api/Finance/AddSupplementMQ";
+            //string baseUrl = $"http://localhost:22707/api/Finance/AddSupplementMQ";
+            string baseUrl = $"http://120.24.149.148/api/Finance/AddSupplementMQ";
 
             var client = new RestSharp.RestClient(baseUrl);
             var request = new RestSharp.RestRequest();

+ 1 - 0
3.Service/XYY.Service.Standard.First/ESB/ESBTrackingService.cs

@@ -175,6 +175,7 @@ namespace XYY.Service.Standard.First.ESB
 left join Order_Order(nolock) b on b.TransferNumber=a.trackNum
 left join Logistics_Trace_ESB(nolock)c on c.TrackingNumber=a.trackNum
 where [key] in @keys";
+
             var list = (await _unitOfWork.QueryBySqlAsync<ZZESBTrackingApiInfo>(sql, null, new
             {
                 keys = keys.Split(',')

+ 1 - 1
3.Service/XYY.ServiceStandard.TrackingService/NodeHelper.cs

@@ -13,7 +13,7 @@ namespace XYY.Service.Standard.TrackingService
         {
             string url = "http://wms.xingyunyi.cn/api/TrackingMore/ConvertTracking";
 #if DEBUG
-            url = "http://localhost:22707/api/TrackingMore/ConvertTracking";
+            //url = "http://localhost:22707/api/TrackingMore/ConvertTracking";
 #endif
             string josnMessage = Newtonsoft.Json.JsonConvert.SerializeObject(postTrackingRequest);
             RestSharp.RestClient client = new RestSharp.RestClient(url);

+ 1 - 0
5.Api/XYY.Api.Finance/Controllers/FinanceCustomerSupplementsController.cs

@@ -30,6 +30,7 @@ namespace XYY.Api.Finance.Controllers
         public FinanceCustomerSupplementsController(IFinance_Customer_SupplementService supplementService, IConfiguration configuration, ICustomerService customerService)
         {
             this.supplementService = supplementService;
+
             _configuration = configuration;
             this.customerService = customerService;
         }