...
|
...
|
@@ -5,10 +5,7 @@ import com.alibaba.fastjson.JSONArray; |
|
|
import com.sy.crossDomain.buildBarCode;
|
|
|
import com.sy.model.*;
|
|
|
import com.sy.relation.VeManifestRelation;
|
|
|
import com.sy.service.EnterCancelServer;
|
|
|
import com.sy.service.LandBusListService;
|
|
|
import com.sy.service.LandRoadVeService;
|
|
|
import com.sy.service.ResMessageService;
|
|
|
import com.sy.service.*;
|
|
|
import com.sy.socket.CommandClient;
|
|
|
import com.sy.utils.FileTool;
|
|
|
import org.apache.http.HttpEntity;
|
...
|
...
|
@@ -19,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.scheduling.annotation.Async;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
import org.apache.log4j.Logger;
|
|
|
|
...
|
...
|
@@ -33,6 +31,7 @@ import java.text.DecimalFormat; |
|
|
import java.text.NumberFormat;
|
|
|
import java.text.ParseException;
|
|
|
import java.util.Date;
|
|
|
import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
...
|
...
|
@@ -48,6 +47,10 @@ public class LiftBar { |
|
|
private ResMessageService resMessageService;//查询运单放行表
|
|
|
@Autowired
|
|
|
private EnterCancelServer enterCancelServer;//调拨业务单独记录表
|
|
|
@Autowired
|
|
|
private BusnesslistinfoService busnesslistinfoService;
|
|
|
@Autowired
|
|
|
BusnessViewService busnessViewService;
|
|
|
private static LiftBar logic = new LiftBar();
|
|
|
//从配置文件中读取货物重差可控范围
|
|
|
private static String checkWt = FileTool.readProperties("grossWt");
|
...
|
...
|
@@ -62,6 +65,8 @@ public class LiftBar { |
|
|
private static String IEPORSE = "无相对应进出场申请";
|
|
|
private static String FANGXING="有运单未放行";
|
|
|
|
|
|
@Autowired
|
|
|
private FeignService feignService;
|
|
|
@PostConstruct
|
|
|
public void init() {
|
|
|
logic = this;
|
...
|
...
|
@@ -69,13 +74,16 @@ public class LiftBar { |
|
|
logic.veService = this.veService;
|
|
|
logic.resMessageService = this.resMessageService;
|
|
|
logic.enterCancelServer = this.enterCancelServer;
|
|
|
logic.feignService=this.feignService;
|
|
|
logic.busnesslistinfoService=this.busnesslistinfoService;
|
|
|
logic.busnessViewService=this.busnessViewService;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* @Param info 卡口采集数据
|
|
|
* @Result 计算卡口采集数据并发送报文
|
|
|
*/
|
|
|
public static boolean liftBar(GatherInfo info) {
|
|
|
public static boolean liftBar(GatherInfo info) throws InterruptedException {
|
|
|
PropertyConfigurator.configure("config/log4j.properties");
|
|
|
//默认返回值
|
|
|
boolean result = false;
|
...
|
...
|
@@ -118,7 +126,9 @@ public class LiftBar { |
|
|
if("I".equals(info.getIetype())){
|
|
|
//进场申请宽进
|
|
|
checkResult=true;
|
|
|
}else{
|
|
|
|
|
|
}
|
|
|
else{
|
|
|
//获取对应场站进场申请的货物重量,进场过磅重量
|
|
|
List<LandBusinessTypeList> listWt=logic.listService.selectwt(list.getTrailerFrameNo(),list.getBarcode(),list.getEndstation(),"I");
|
|
|
for(LandBusinessTypeList typeList:listWt){
|
...
|
...
|
@@ -133,7 +143,7 @@ public class LiftBar { |
|
|
diffVal = inWt- growssWt;
|
|
|
}
|
|
|
//判断场站出场是否要重量校验
|
|
|
if(FileTool.readProperties("station").equals(list.getEndstation())){
|
|
|
if(FileTool.readProperties("station").equals(list.getEndstation())||FileTool.readProperties("stationsf").equals(list.getEndstation())){
|
|
|
checkResult=true;
|
|
|
}else if(!"普通货".equals(list.getCocode())){
|
|
|
checkResult=true;
|
...
|
...
|
@@ -183,6 +193,38 @@ public class LiftBar { |
|
|
if(count==0){
|
|
|
buildBarCode.cancleBarCode(vaName);
|
|
|
}
|
|
|
/**
|
|
|
* 提前运抵判断
|
|
|
* 如果有提前运抵标识,判断是否分批,不分批直接通知
|
|
|
* 分批是否最后一批,最后一批通知
|
|
|
* */
|
|
|
if("I".equals(info.getIetype())){
|
|
|
try{
|
|
|
List<LAND_BUSINEESTYPE_LIST_INFO> arrive_infos=logic.busnesslistinfoService.selectarrvie(info.getBarcode());//查询是否提前运抵
|
|
|
if(arrive_infos!=null && arrive_infos.size()>0){
|
|
|
for (LAND_BUSINEESTYPE_LIST_INFO businees:arrive_infos) {
|
|
|
//判断运单是否分批
|
|
|
if ("0".equals(businees.getPartialidentity())){
|
|
|
logger.info("运单号{}不分批,不从通知数组删除");
|
|
|
}else { //分批后的处理
|
|
|
List<businesstypelistinfo_view> info_view=logic.busnessViewService.selectawb(businees.getAwba());
|
|
|
// 装载运单的分批车辆还有未入场的,从通知数组中删除他
|
|
|
if (info_view.size()>0){
|
|
|
arrive_infos.remove(businees);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
//最后发送通知数组
|
|
|
try{
|
|
|
new LiftBar().sendMessage(info.getVename(),arrive_infos);
|
|
|
}catch (Exception e){
|
|
|
logger.info("新舱单发送消息异常---"+e.toString());
|
|
|
}
|
|
|
}
|
|
|
}catch (Exception e){
|
|
|
logger.info("运单分批消息异常---"+e.toString());
|
|
|
}
|
|
|
}
|
|
|
//调拨货冻结
|
|
|
if (list.getBusinesstype().indexOf("业务") > 0) {
|
|
|
logic.inOrUpEnterCancel(list);
|
...
|
...
|
@@ -227,7 +269,7 @@ public class LiftBar { |
|
|
* @param IEtype
|
|
|
*/
|
|
|
public static void sendData(String stationCode, String carNo, boolean IEtype) {
|
|
|
String url = "http://10.50.3.73:8080/air-api/car/channelCar?stationCode=" + stationCode + "&carNo=" + carNo + "&isPickup=" + IEtype;
|
|
|
String url = "http://10.50.3.73:8881/air-api/car/channelCar?stationCode=" + stationCode + "&carNo=" + carNo + "&isPickup=" + IEtype;
|
|
|
try {
|
|
|
HttpClient httpClient = new DefaultHttpClient();
|
|
|
HttpGet httpGet = new HttpGet(url);
|
...
|
...
|
@@ -262,7 +304,11 @@ public class LiftBar { |
|
|
}
|
|
|
//TODO:加场站判定
|
|
|
}
|
|
|
sendData(sationCode, list.getTrailerFrameNo(), flag);
|
|
|
try{
|
|
|
sendData(sationCode, list.getTrailerFrameNo(), flag);
|
|
|
}catch (Exception e){
|
|
|
logger.info("码头发送消息异常---"+e.toString());
|
|
|
}
|
|
|
}
|
|
|
/**
|
|
|
* 查询运单是否全部放行
|
...
|
...
|
@@ -390,7 +436,7 @@ public class LiftBar { |
|
|
logger.info("访问返回的数据重量:" + bg);
|
|
|
in.close();
|
|
|
} catch (MalformedURLException e) {
|
|
|
e.printStackTrace();
|
|
|
logger.info("运单放行消息异常---"+e.toString());
|
|
|
logger.error(e);
|
|
|
} catch (IOException e) {
|
|
|
e.printStackTrace();
|
...
|
...
|
@@ -422,7 +468,7 @@ public class LiftBar { |
|
|
try {
|
|
|
m = nf.parse(checkWt);//将百分数转换成Number类型
|
|
|
} catch (ParseException e) {
|
|
|
e.printStackTrace();
|
|
|
logger.info("重量校验消息异常---"+e.toString());
|
|
|
logger.info(e.getMessage());
|
|
|
}
|
|
|
return m.doubleValue();
|
...
|
...
|
@@ -478,6 +524,22 @@ public class LiftBar { |
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 为提前运抵服务发送数据
|
|
|
*
|
|
|
* @param
|
|
|
* @param
|
|
|
* @return
|
|
|
*/
|
|
|
@Async("asyncPoolTaskExecutor")
|
|
|
public void sendMessage(String vname, List<LAND_BUSINEESTYPE_LIST_INFO> list_infos)throws InterruptedException{
|
|
|
logger.info("新舱单发送服务开始");
|
|
|
AdvanceArrive arrive=new AdvanceArrive();
|
|
|
arrive.setVname(vname);
|
|
|
arrive.setMasterList(list_infos);
|
|
|
logger.info("新舱单发送服务数据",arrive);
|
|
|
Map<String,Object> map=logic.feignService.sendMessage(arrive);
|
|
|
logger.info(""+map);
|
|
|
}
|
|
|
}
|
|
|
|
...
|
...
|
|