...
|
...
|
@@ -146,8 +146,14 @@ public class EnginCheckServiceImpl implements EnginCheckService { |
|
|
}
|
|
|
|
|
|
//获取申请单表体
|
|
|
String landBusinessJson = "";
|
|
|
if (StringUtils.isNotEmpty(gatherInfo.getVename())) {
|
|
|
log.info("[FORM-CACHE-GET]:车辆-{}核碰缓存",gatherInfo.getVename());
|
|
|
String landBusinessJson = redisService.get(gatherInfo.getVename());
|
|
|
landBusinessJson = redisService.get(gatherInfo.getVename());
|
|
|
}else {
|
|
|
log.info("[FORM-CACHE-GET]:车辆未获取到车牌号,seqno:{}",gatherInfo.getSeqno());
|
|
|
}
|
|
|
|
|
|
if (StringUtils.isNotEmpty(landBusinessJson)) {
|
|
|
//这个是申请单表体
|
|
|
List<LandBusinessTypeList> list = JSONArray.parseArray(landBusinessJson, LandBusinessTypeList.class);
|
...
|
...
|
@@ -311,7 +317,11 @@ public class EnginCheckServiceImpl implements EnginCheckService { |
|
|
command.setVeName(info.getVename());
|
|
|
command.setVeWeight(selfWt);
|
|
|
command.setIeType(info.getIetype());
|
|
|
if(info.getGrosswt()!=null){
|
|
|
command.setExitGrossWeight(info.getGrosswt().doubleValue());
|
|
|
}else {
|
|
|
command.setExitGrossWeight(0.0);
|
|
|
}
|
|
|
command.setInGrossWeight(inWt);
|
|
|
command.setGoodsWeight(goodsWt);
|
|
|
command.setActualGoodsWeight(diffVal);
|
...
|
...
|
|