作者 朱兆平

北货三号口分拨施封通知,综保区不通知关锁可自动抬杆放行

@@ -871,6 +871,9 @@ public class GatherInfoHandle implements GatherInfoService { @@ -871,6 +871,9 @@ public class GatherInfoHandle implements GatherInfoService {
871 if (waybill.length() < 1) { 871 if (waybill.length() < 1) {
872 return false; 872 return false;
873 } 873 }
  874 + if (gatherInfoHandle.debug){
  875 + return true;
  876 + }
874 waybill = waybill.replace("-", ""); 877 waybill = waybill.replace("-", "");
875 //中文逗号替换 878 //中文逗号替换
876 waybill = waybill.replace(",", ","); 879 waybill = waybill.replace(",", ",");
@@ -96,13 +96,28 @@ public class CustomsLockServiceImpl implements CustomsLockService { @@ -96,13 +96,28 @@ public class CustomsLockServiceImpl implements CustomsLockService {
96 String sfAreaid = "4600541001"; 96 String sfAreaid = "4600541001";
97 String zbqAreaid = "4600329012"; 97 String zbqAreaid = "4600329012";
98 String zbqN3Areaid = "4612199001"; 98 String zbqN3Areaid = "4612199001";
  99 + //北货三号卡口出通道
  100 + String bh_3_out = "4604600030";
  101 + //北货三号卡口进通道1
  102 + String bh_3_in1= "4604601030";
  103 + //北货三号卡口进通道2
  104 + String bh_3_in2= "4604601031";
99 105
100 106
101 String carEndstationList = redisService.get(info.getVename() + "_endstationList"); 107 String carEndstationList = redisService.get(info.getVename() + "_endstationList");
102 if (StringUtils.isNotEmpty(info.getVename()) && StringUtils.isNotEmpty(carEndstationList)){ 108 if (StringUtils.isNotEmpty(info.getVename()) && StringUtils.isNotEmpty(carEndstationList)){
103 -  
104 //涉及综保区场站的申请不核验关锁业务. 109 //涉及综保区场站的申请不核验关锁业务.
105 if (carEndstationList.contains(zbqAreaid)) { 110 if (carEndstationList.contains(zbqAreaid)) {
  111 + if ("分拨业务".equals(landBusinessTypeList.getBusinesstype()) && info.getChnlno().equals(bh_3_out)){
  112 + log.info("[LOCK-CHECK]-分拨业务-综保区北货流转业务,北货区域关锁通知,当前通道:{}",landBusinessTypeList.getEndstation());
  113 + return true;
  114 + }
  115 +// if ("调拨业务".equals(landBusinessTypeList.getBusinesstype())){
  116 +// if (info.getChnlno().equals(bh_3_in1) || info.getChnlno().equals(bh_3_in2)){
  117 +// log.info("[LOCK-CHECK]-调拨业务-综保区北货流转业务,北货区域关锁通知,当前通道:{}",landBusinessTypeList.getEndstation());
  118 +// return true;
  119 +// }
  120 +// }
106 log.info("[LOCK-CHECK]-申报场站列表包含综保区,不处理关锁业务,当前场站:{}",landBusinessTypeList.getEndstation()); 121 log.info("[LOCK-CHECK]-申报场站列表包含综保区,不处理关锁业务,当前场站:{}",landBusinessTypeList.getEndstation());
107 return false; 122 return false;
108 } 123 }