切换导航条
此项目
正在载入...
登录
zhangFan
/
analysis_imf
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
朱兆平
2 years ago
提交
5d8a206496d6c9da479c9d4ed9d54931a34d915a
1 个父辈
e161682a
北货三号口分拨施封通知,综保区不通知关锁可自动抬杆放行
显示空白字符变更
内嵌
并排对比
正在显示
2 个修改的文件
包含
19 行增加
和
1 行删除
src/main/java/com/sy/service/impl/GatherInfoHandle.java
src/main/java/com/sy/service/lock/CustomsLockServiceImpl.java
src/main/java/com/sy/service/impl/GatherInfoHandle.java
查看文件 @
5d8a206
...
...
@@ -871,6 +871,9 @@ public class GatherInfoHandle implements GatherInfoService {
if
(
waybill
.
length
()
<
1
)
{
return
false
;
}
if
(
gatherInfoHandle
.
debug
){
return
true
;
}
waybill
=
waybill
.
replace
(
"-"
,
""
);
//中文逗号替换
waybill
=
waybill
.
replace
(
","
,
","
);
...
...
src/main/java/com/sy/service/lock/CustomsLockServiceImpl.java
查看文件 @
5d8a206
...
...
@@ -96,13 +96,28 @@ public class CustomsLockServiceImpl implements CustomsLockService {
String
sfAreaid
=
"4600541001"
;
String
zbqAreaid
=
"4600329012"
;
String
zbqN3Areaid
=
"4612199001"
;
//北货三号卡口出通道
String
bh_3_out
=
"4604600030"
;
//北货三号卡口进通道1
String
bh_3_in1
=
"4604601030"
;
//北货三号卡口进通道2
String
bh_3_in2
=
"4604601031"
;
String
carEndstationList
=
redisService
.
get
(
info
.
getVename
()
+
"_endstationList"
);
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_in1) || info.getChnlno().equals(bh_3_in2)){
// log.info("[LOCK-CHECK]-调拨业务-综保区北货流转业务,北货区域关锁通知,当前通道:{}",landBusinessTypeList.getEndstation());
// return true;
// }
// }
log
.
info
(
"[LOCK-CHECK]-申报场站列表包含综保区,不处理关锁业务,当前场站:{}"
,
landBusinessTypeList
.
getEndstation
());
return
false
;
}
...
...
请
注册
或
登录
后发表评论