...
|
...
|
@@ -96,6 +96,8 @@ public class CustomsLockServiceImpl implements CustomsLockService { |
|
|
String sfAreaid = "4600541001";
|
|
|
String zbqAreaid = "4600329012";
|
|
|
String zbqN3Areaid = "4612199001";
|
|
|
String xhAreaid = "4604000000";
|
|
|
|
|
|
//北货三号卡口出通道
|
|
|
String bh_3_out = "4604600030";
|
|
|
//北货三号卡口进通道1
|
...
|
...
|
@@ -108,9 +110,15 @@ public class CustomsLockServiceImpl implements CustomsLockService { |
|
|
if (StringUtils.isNotEmpty(info.getVename()) && StringUtils.isNotEmpty(carEndstationList)){
|
|
|
//涉及综保区场站的申请不核验关锁业务.
|
|
|
if (carEndstationList.contains(zbqAreaid)) {
|
|
|
if ("分拨业务".equals(landBusinessTypeList.getBusinesstype()) && info.getChnlno().equals(bh_3_out)){
|
|
|
log.info("[LOCK-CHECK]-分拨业务-综保区北货流转业务,北货区域关锁通知,当前通道:{}",landBusinessTypeList.getEndstation());
|
|
|
return true;
|
|
|
if ("分拨业务".equals(landBusinessTypeList.getBusinesstype())){
|
|
|
if (info.getChnlno().equals(bh_3_out)) {
|
|
|
log.info("[LOCK-CHECK-TRUE]-分拨业务-综保区北货流转业务,北货区域关锁通知,当前场站北货站");
|
|
|
return true;
|
|
|
}
|
|
|
if (info.getAreaid().equals(xhAreaid)) {
|
|
|
log.info("[LOCK-CHECK-TRUE]-分拨业务-西货综保区流转业务,西货区域关锁通知,当前场站西货站");
|
|
|
return true;
|
|
|
}
|
|
|
}
|
|
|
// if ("调拨业务".equals(landBusinessTypeList.getBusinesstype())){
|
|
|
// if (info.getChnlno().equals(bh_3_in1) || info.getChnlno().equals(bh_3_in2)){
|
...
|
...
|
@@ -118,7 +126,7 @@ public class CustomsLockServiceImpl implements CustomsLockService { |
|
|
// return true;
|
|
|
// }
|
|
|
// }
|
|
|
log.info("[LOCK-CHECK]-申报场站列表包含综保区,不处理关锁业务,当前场站:{}",landBusinessTypeList.getEndstation());
|
|
|
log.info("[LOCK-CHECK-NOTICE]-申报场站列表包含综保区,不处理关锁业务,当前场站:{}",landBusinessTypeList.getEndstation());
|
|
|
return false;
|
|
|
}
|
|
|
|
...
|
...
|
|