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-05 15:46:48 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9b03ec11cdd43d25af8f6b020fad48e28b6dfd5d
9b03ec11
1 parent
80913ffd
customer|add代码调整
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 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/util/service/biz/ConsignmentUtil.java
server/biz-customer/src/main/java/com/fedex/connect/customer/service/biz/impl/ConsignmentServiceImpl.java
View file @
9b03ec1
...
...
@@ -89,6 +89,11 @@ public class ConsignmentServiceImpl extends BaseService implements IConsignmentS
/**
* 非501数据
*/
if
(
StringUtils
.
isEmpty
(
bo
.
getShipperAccount
())){
ConsignmentAddDto
consignmentAddDto
=
new
ConsignmentAddDto
();
consignmentAddDto
.
setIsCreatorFlag
(
DigitConstants
.
DIGIT_TWO
);
return
responseUtils
.
success
(
consignmentAddDto
);
}
return
consignmentUtil
.
consignmentCheckWithNotCe
(
consignment
,
bo
);
}
else
{
/**
...
...
server/biz-customer/src/main/java/com/fedex/connect/customer/util/service/biz/ConsignmentUtil.java
View file @
9b03ec1
...
...
@@ -171,8 +171,7 @@ public class ConsignmentUtil {
* 都不一致,但是输入了shipperAccount,则给出提示
*/
if
(
StringUtils
.
hasText
(
bo
.
getShipperAccount
()))
{
consignmentAddDto
.
setIsCreatorFlag
(
DigitConstants
.
DIGIT_TWO
);
consignmentAddDto
.
setConsignment
(
null
);
consignmentAddDto
.
setIsCreatorFlag
(
DigitConstants
.
DIGIT_ONE
);
return
responseUtils
.
success
(
ResponseCode
.
MESSAGE_CODE_30005
,
consignmentAddDto
);
}
...
...
Please
register
or
login
to post a comment