...
|
...
|
@@ -16,6 +16,7 @@ import org.apache.http.impl.client.DefaultHttpClient; |
|
|
import org.apache.http.util.EntityUtils;
|
|
|
import org.apache.log4j.PropertyConfigurator;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.scheduling.annotation.Async;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
import org.apache.log4j.Logger;
|
...
|
...
|
@@ -51,6 +52,12 @@ public class LiftBar { |
|
|
private BusnesslistinfoService busnesslistinfoService;
|
|
|
@Autowired
|
|
|
BusnessViewService busnessViewService;
|
|
|
@Value("${wharf.interface.host}")
|
|
|
private String wharfHost;
|
|
|
|
|
|
@Value("${nmms.interface.host}")
|
|
|
private String nmmsHost;
|
|
|
|
|
|
private static LiftBar logic = new LiftBar();
|
|
|
//从配置文件中读取货物重差可控范围
|
|
|
private static String checkWt = FileTool.readProperties("grossWt");
|
...
|
...
|
@@ -77,6 +84,8 @@ public class LiftBar { |
|
|
logic.feignService=this.feignService;
|
|
|
logic.busnesslistinfoService=this.busnesslistinfoService;
|
|
|
logic.busnessViewService=this.busnessViewService;
|
|
|
logic.wharfHost=this.wharfHost;
|
|
|
logic.nmmsHost=this.nmmsHost;
|
|
|
}
|
|
|
|
|
|
/**
|
...
|
...
|
@@ -269,7 +278,7 @@ public class LiftBar { |
|
|
* @param IEtype
|
|
|
*/
|
|
|
public static void sendData(String stationCode, String carNo, boolean IEtype) {
|
|
|
String url = "http://10.50.3.73:8881/air-api/car/channelCar?stationCode=" + stationCode + "&carNo=" + carNo + "&isPickup=" + IEtype;
|
|
|
String url = logic.wharfHost+"air-api/car/channelCar?stationCode=" + stationCode + "&carNo=" + carNo + "&isPickup=" + IEtype;
|
|
|
try {
|
|
|
HttpClient httpClient = new DefaultHttpClient();
|
|
|
HttpGet httpGet = new HttpGet(url);
|
...
|
...
|
@@ -403,7 +412,7 @@ public class LiftBar { |
|
|
if (!(waybill.indexOf("-") != -1)) {
|
|
|
waybill = waybill.substring(0, 3) + "-" + waybill.substring(3);
|
|
|
}
|
|
|
String url = "http://10.50.3.82:8081/orig/orig?waybill=" + waybill + "&imp=" + imp;
|
|
|
String url = logic.nmmsHost+"orig/orig?waybill=" + waybill + "&imp=" + imp;
|
|
|
// String url = "http://tjfx.15miaoo.com:8003/tj/orig/orig?waybill=" + waybill + "&imp=" + imp;
|
|
|
StringBuilder json = new StringBuilder();
|
|
|
Map map = null;
|
...
|
...
|
|