Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
iClear-Connect-Pre-Clearance
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
zelong.shao
2024-12-20 18:05:16 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
11328f805907ea3eb7d458668c35e445f0563758
11328f80
1 parent
5372e895
customer|运单号校验
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
server/biz-customer/src/main/java/com/fedex/connect/customer/service/biz/impl/ConsignmentServiceImpl.java
server/biz-customer/src/main/java/com/fedex/connect/customer/service/biz/impl/ConsignmentServiceImpl.java
View file @
11328f8
...
...
@@ -61,7 +61,7 @@ public class ConsignmentServiceImpl extends BaseService implements IConsignmentS
ConsignmentAddDto
consignmentAddDto
=
new
ConsignmentAddDto
();
if
(
StringUtils
.
isEmpty
(
bo
.
getConsignmentCode
())
||
!
bo
.
getConsignmentCode
().
matches
(
"\\d{12}"
))
{
consignmentAddDto
.
setIsCreatorFlag
(
DigitConstants
.
DIGIT_TWO
);
return
responseUtils
.
success
(
ResponseCode
.
MESSAGE_CODE_300
04
,
consignmentAddDto
);
return
responseUtils
.
success
(
ResponseCode
.
MESSAGE_CODE_300
17
,
consignmentAddDto
);
}
//查询运单表是否存在已提交的运单
LocalDate
thirtyDaysAgo
=
LocalDate
.
now
().
minusDays
(
30
);
...
...
Please
register
or
login
to post a comment