| | |
| | | return result; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 调用WMS接口验证箱码是否可拣货并返回装车口 |
| | | /// </summary> |
| | | /// <param name="boxNo">箱码</param> |
| | | /// <returns></returns> |
| | | public RequestloadingAddre ResultBoxInfoExportWcs(string boxNo) |
| | | { |
| | | string url = Urls.WMSAddress + ":" + Urls.WMSPort; |
| | | var str = new |
| | | { |
| | | BoxNo = boxNo |
| | | }; |
| | | var result = (url + "/api/DownAPi/ResultBoxInfoCheckWcs").SetBody(str, "application/json", Encoding.UTF8).PostAsAsync<RequestloadingAddre>().Result; |
| | | Log.Information("调用WMS接口验证箱码是否可拣货并返回装车口:" + result.ToJson()); |
| | | |
| | | return result; |
| | | } |
| | | } |