Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
iClear-api
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
tao.mo
2023-07-20 15:18:18 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
151b18a6d6c9b000885174dd7189899cdcca9a2b
151b18a6
1 parent
522f984d
接口调用不失败处理
mt 2023年7月20日15:18:14
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
src/main/java/com/erry/iclear/dateInterface/service/ChmConsignmentService.java
src/main/java/com/erry/iclear/dateInterface/service/ChmConsignmentService.java
View file @
151b18a
...
...
@@ -646,6 +646,13 @@ public class ChmConsignmentService {
result
.
setMsg
(
"主单"
+
fedexMawb
.
getBillNo
()+
" 更新失败"
);
return
result
;
}
}
else
{
//条件1、状态为 C类待申报
//条件2、本次推送时间 > 上次推送的时间 条件不满足
log
.
info
(
"主单"
+
fedexMawb
.
getBillNo
()+
" 更新失败"
);
result
.
setCode
(
ErrorCodeEnum
.
ERROR_30003
.
getCode
());
result
.
setMsg
(
"主单"
+
fedexMawb
.
getBillNo
()+
" 条件1、状态为 C类待申报,条件2、本次推送时间 > 上次推送的时间,条件不满足更新失败"
);
return
result
;
}
}
catch
(
Exception
e
){
log
.
error
(
""
+
e
.
getMessage
());
...
...
Please
register
or
login
to post a comment