...
|
...
|
@@ -3,6 +3,7 @@ package com.sy.logic; |
|
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
import com.alibaba.fastjson.JSONArray;
|
|
|
import com.sy.crossDomain.buildBarCode;
|
|
|
import com.sy.model.GatherInfo;
|
|
|
import com.sy.model.LandBusinessTypeList;
|
|
|
import com.sy.model.LandRoadVe;
|
...
|
...
|
@@ -48,11 +49,12 @@ public class LogicOperation { |
|
|
//逻辑判断后的结果定义
|
|
|
private static String PERMITTHOUGH = "直接放行";
|
|
|
private static String GROWSSEXCETION = "禁止通行,重量不在可控范围";
|
|
|
private static String NORECORD = "车辆未备案";
|
|
|
private static String INPUTSTATION = "此车辆未做进站申请";
|
|
|
private static String ENTERSTATION = "此车辆未做出站申请";
|
|
|
|
|
|
@PostConstruct
|
|
|
public void init(){
|
|
|
public void init() {
|
|
|
logic = this;
|
|
|
logic.listService = this.listService;
|
|
|
logic.veService = this.veService;
|
...
|
...
|
@@ -61,61 +63,76 @@ public class LogicOperation { |
|
|
/**
|
|
|
* @Param info 卡口采集数据
|
|
|
* @Result 计算卡口采集数据并发送报文
|
|
|
* */
|
|
|
public static void operation(GatherInfo info){
|
|
|
*/
|
|
|
public static boolean operation(GatherInfo info) {
|
|
|
boolean result = false;
|
|
|
BigDecimal grosswt = info.getGrosswt();
|
|
|
//转为double类型
|
|
|
double growssWt = grosswt.doubleValue();
|
|
|
String ietype = info.getIetype();
|
|
|
List<LandBusinessTypeList>lists = null;
|
|
|
LandRoadVe ve = logic.veService.selectByFrameNo(info.getIcvename());
|
|
|
if("E".equals(ietype)){
|
|
|
List<LandBusinessTypeList> lists = null;
|
|
|
String vaName = info.getVename();
|
|
|
LandRoadVe ve = logic.veService.selectByFrameNo(vaName);
|
|
|
if(ve ==null) return result;
|
|
|
if ("E".equals(ietype)) {
|
|
|
ietype = "出场站";
|
|
|
lists = logic.listService.selectByFrameNoAndType(info.getIcvename(),ietype);
|
|
|
for (LandBusinessTypeList list:lists) {
|
|
|
lists = logic.listService.selectByFrameNoAndType(info.getVename(), ietype);
|
|
|
for (LandBusinessTypeList list : lists) {
|
|
|
//查询是否做了出场申请
|
|
|
if(list.getContrastflag()=="" | list.getContrastflag()==null){
|
|
|
if (list.getContrastflag() == null || list.getContrastflag() == "" || list.getContrastflag().length() <= 0) {
|
|
|
//判断载货重量是否符合所设定的范围
|
|
|
double goodsWt = GoodsWt(list.getMasterList(),"E");
|
|
|
double goodsWt = 0.0;
|
|
|
if (list.getMasterList().length() > 0) {
|
|
|
goodsWt = GoodsWt(list.getMasterList(), "I");
|
|
|
}
|
|
|
double selfWt = Double.parseDouble(ve.getSelfWt());
|
|
|
sendBw(info,growssWt,selfWt,goodsWt);
|
|
|
list.setContrastflag("已出站");
|
|
|
logic.listService.updateById(list);
|
|
|
if("货物流转".equals(list.getBusinesstype()) | "分拨分流".equals(list.getBusinesstype())){
|
|
|
if(list.getMasterList().length()>0) {
|
|
|
createTypeList(list);
|
|
|
if (sendBw(info, growssWt, selfWt, goodsWt)) {
|
|
|
list.setContrastflag("已出站");
|
|
|
logic.listService.updateById(list);
|
|
|
if ("货物流转".equals(list.getBusinesstype()) | "分拨分流".equals(list.getBusinesstype())) {
|
|
|
if (list.getMasterList().length() > 0) {
|
|
|
createTypeList(list);
|
|
|
}
|
|
|
}
|
|
|
result = true;
|
|
|
}
|
|
|
}else {
|
|
|
CommandClient.Client(info,ENTERSTATION);
|
|
|
} else {
|
|
|
CommandClient.Client(info, ENTERSTATION);
|
|
|
}
|
|
|
}
|
|
|
}else {
|
|
|
} else {
|
|
|
ietype = "进场站";
|
|
|
lists = logic.listService.selectByFrameNoAndType(info.getIcvename(),ietype);
|
|
|
for (LandBusinessTypeList list:lists) {
|
|
|
lists = logic.listService.selectByFrameNoAndType(info.getVename(), ietype);
|
|
|
for (LandBusinessTypeList list : lists) {
|
|
|
//查询是否做了出场申请
|
|
|
if(list.getContrastflag()=="" | list.getContrastflag()==null){
|
|
|
if (list.getContrastflag() == null || list.getContrastflag() == "" || list.getContrastflag().length
|
|
|
() <= 0) {
|
|
|
//判断载货重量是否符合所设定的范围
|
|
|
double goodsWt = GoodsWt(list.getMasterList(),"I");
|
|
|
double goodsWt = 0.0;
|
|
|
if(list.getMasterList().length() > 0){
|
|
|
goodsWt = GoodsWt(list.getMasterList(), "E");
|
|
|
}
|
|
|
double selfWt = Double.parseDouble(ve.getSelfWt());
|
|
|
sendBw(info,growssWt,selfWt,goodsWt);
|
|
|
list.setContrastflag("已进站");
|
|
|
logic.listService.updateById(list);
|
|
|
}else {
|
|
|
CommandClient.Client(info,INPUTSTATION);
|
|
|
if (sendBw(info, growssWt, selfWt, goodsWt)) {
|
|
|
list.setContrastflag("已进站");
|
|
|
logic.listService.updateById(list);
|
|
|
result = true;
|
|
|
}
|
|
|
} else {
|
|
|
CommandClient.Client(info, INPUTSTATION);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
//将获取的checkWt进行小数转化
|
|
|
public static double valueDob(){
|
|
|
NumberFormat nf=NumberFormat.getPercentInstance();
|
|
|
public static double valueDob() {
|
|
|
NumberFormat nf = NumberFormat.getPercentInstance();
|
|
|
Number m = null;
|
|
|
try {
|
|
|
m=nf.parse(checkWt);//将百分数转换成Number类型
|
|
|
}catch (ParseException e){
|
|
|
m = nf.parse(checkWt);//将百分数转换成Number类型
|
|
|
} catch (ParseException e) {
|
|
|
e.printStackTrace();
|
|
|
logger.info(e.getMessage());
|
|
|
}
|
...
|
...
|
@@ -127,13 +144,23 @@ public class LogicOperation { |
|
|
* @Param wt 车辆自重
|
|
|
* @Param goodsWt 货物总重
|
|
|
* @Result 获取运单重量
|
|
|
* */
|
|
|
*/
|
|
|
//校验载重和称重是否在合理的范围
|
|
|
public static boolean checkResult(double grossWt,double wt,double goodsWt){
|
|
|
public static boolean checkResult(double grossWt, double wt, double goodsWt) {
|
|
|
boolean flag = false;
|
|
|
double result = (grossWt-wt)/goodsWt;
|
|
|
double result = 0.0;
|
|
|
if (goodsWt > 0) {
|
|
|
result = (grossWt - wt) / goodsWt;
|
|
|
if (result > 1) {
|
|
|
result = result - 1;
|
|
|
} else {
|
|
|
result = 1 - result;
|
|
|
}
|
|
|
} else {
|
|
|
result = (grossWt - wt);
|
|
|
}
|
|
|
BigDecimal bd = new BigDecimal(result);
|
|
|
if(bd.setScale(2,BigDecimal.ROUND_HALF_UP).doubleValue()<=valueDob()){
|
|
|
if (bd.setScale(3, BigDecimal.ROUND_HALF_UP).doubleValue() <= valueDob()) {
|
|
|
flag = true;
|
|
|
}
|
|
|
return flag;
|
...
|
...
|
@@ -143,13 +170,13 @@ public class LogicOperation { |
|
|
* @Param mainifast 主单列表
|
|
|
* @Param ietype 进出标志
|
|
|
* 获取货物总重
|
|
|
* */
|
|
|
public static double GoodsWt(String mainifast,String ietype){
|
|
|
*/
|
|
|
public static double GoodsWt(String mainifast, String ietype) {
|
|
|
Double sum = 0.0;
|
|
|
if(mainifast.length()>0){
|
|
|
String [] mainifastList = mainifast.split(",");
|
|
|
for (String mainBill:mainifastList) {
|
|
|
sum = sum+=getGrossWt(mainBill,ietype);
|
|
|
if (mainifast.length() > 0) {
|
|
|
String[] mainifastList = mainifast.split(",");
|
|
|
for (String mainBill : mainifastList) {
|
|
|
sum = sum += getGrossWt(mainBill, ietype);
|
|
|
}
|
|
|
}
|
|
|
return sum;
|
...
|
...
|
@@ -160,15 +187,15 @@ public class LogicOperation { |
|
|
* @Param waybill 主单号
|
|
|
* @Param imp 进出港标识
|
|
|
* @Result 获取运单重量
|
|
|
* */
|
|
|
*/
|
|
|
public static double getGrossWt(String waybill, String imp) {
|
|
|
String url = "http://tjfx.15miaoo.com:8003/tj/orig/orig?waybill=" + waybill + "&imp=" + imp;
|
|
|
StringBuilder json = new StringBuilder();
|
|
|
Map map = null;
|
|
|
double bg = 0;
|
|
|
try {
|
|
|
URL oracle = new URL(url);
|
|
|
URLConnection yc = oracle.openConnection();
|
|
|
URL Url = new URL(url);
|
|
|
URLConnection yc = Url.openConnection();
|
|
|
BufferedReader in = new BufferedReader(new InputStreamReader(yc.getInputStream()));
|
|
|
String inputLine = null;
|
|
|
while ((inputLine = in.readLine()) != null) {
|
...
|
...
|
@@ -177,7 +204,8 @@ public class LogicOperation { |
|
|
JSONArray array = JSONArray.parseArray(json.toString());
|
|
|
for (int i = 0; i < array.size(); i++) {
|
|
|
map = JSON.parseObject(array.getString(i));
|
|
|
if (map.get("receiptinformation").toString().startsWith("41301")) {
|
|
|
if (map.get("receiptinformation").toString().startsWith("41301") || map.get("receiptinformation")
|
|
|
.toString().startsWith("41106")) {
|
|
|
bg = Double.parseDouble((String) map.get("totalweight"));
|
|
|
return bg;
|
|
|
}
|
...
|
...
|
@@ -190,43 +218,50 @@ public class LogicOperation { |
|
|
}
|
|
|
return bg;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 分拨或者流转业务生成新的进站申请
|
|
|
* */
|
|
|
public static void createTypeList(LandBusinessTypeList list){
|
|
|
*/
|
|
|
public static void createTypeList(LandBusinessTypeList list) {
|
|
|
LandBusinessTypeList typeList = new LandBusinessTypeList();
|
|
|
typeList.setId(UUIDCreate.getUUID());
|
|
|
typeList.setAgentname(list.getAgentname());
|
|
|
typeList.setAgentno(list.getAgentno());
|
|
|
typeList.setAisle("1号卡口");
|
|
|
typeList.setAisle("1号卡口-进");
|
|
|
typeList.setCreateBy(list.getCreateBy());
|
|
|
typeList.setUpdateBy(list.getUpdateBy());
|
|
|
typeList.setCreateDate(new Date());
|
|
|
typeList.setUpdateDate(new Date());
|
|
|
typeList.setCocode(list.getCocode());
|
|
|
typeList.setDriverid(list.getDriverid());
|
|
|
typeList.setDrivername(list.getDrivername());
|
|
|
typeList.setStartport(list.getEndport());
|
|
|
typeList.setStartsatation(list.getEndstation());
|
|
|
typeList.setEndport(list.getStartport());
|
|
|
typeList.setEndstation(list.getStartsatation());
|
|
|
typeList.setTrailerFrameNo(list.getTrailerFrameNo());
|
|
|
typeList.setTrailerLicenseNo(list.getTrailerFrameNo());
|
|
|
typeList.setTrailerLicenseNo(list.getTrailerLicenseNo());
|
|
|
typeList.setTurnoverflag("进场站");
|
|
|
typeList.setProdectTime(new Date());
|
|
|
typeList.setMasterList(list.getMasterList());
|
|
|
typeList.setBusinesstype(list.getBusinesstype());
|
|
|
String barCode = buildBarCode.CreateBarCode(list.getTrailerFrameNo(),"",list.getMasterList());
|
|
|
typeList.setBarCode(barCode);
|
|
|
logic.listService.saveList(typeList);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
*校验重量并发送报文
|
|
|
* */
|
|
|
|
|
|
public static void sendBw(GatherInfo info,double growsswWt,double selfWt,double goodsWt){
|
|
|
String flag = null;
|
|
|
if(checkResult(growsswWt,selfWt,goodsWt)){
|
|
|
CommandClient.Client(info,PERMITTHOUGH);
|
|
|
}else {
|
|
|
CommandClient.Client(info,GROWSSEXCETION);
|
|
|
* 校验重量并发送报文
|
|
|
*/
|
|
|
|
|
|
public static boolean sendBw(GatherInfo info, double growsswWt, double selfWt, double goodsWt) {
|
|
|
boolean flag = false;
|
|
|
if (checkResult(growsswWt, selfWt, goodsWt)) {
|
|
|
CommandClient.Client(info, PERMITTHOUGH);
|
|
|
flag = true;
|
|
|
} else {
|
|
|
CommandClient.Client(info, GROWSSEXCETION);
|
|
|
}
|
|
|
return flag;
|
|
|
}
|
|
|
} |
...
|
...
|
|