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
tao.mo
2024-12-19 17:59:47 +0800
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
9029f78c9a70bc48bb63343e58451a5a64cf9235
9029f78c
2 parents
b4948e6e
341d9ae5
Merge remote-tracking branch 'origin/master'
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
server/biz-customer/src/main/java/com/fedex/connect/customer/repository/repo/impl/ConsignmentRepositoryImpl.java
server/biz-customer/src/main/java/com/fedex/connect/customer/repository/repo/impl/ConsignmentRepositoryImpl.java
View file @
9029f78
...
...
@@ -46,7 +46,8 @@ public class ConsignmentRepositoryImpl extends BaseDao implements IConsignmentRe
if
(
SystemDefaultUserConstants
.
SYSTEM_USER_KEYS
.
USER_NAME
.
equals
(
consignment
.
getCreateUserName
())){
consignment
.
setCreateUserName
(
user
.
getUserName
());
}
if
(!
user
.
getUserUuid
().
equals
(
consignment
.
getUserUuid
())
&&
(!
StringUtils
.
isEmpty
(
user
.
getAccountNo
())
&&
!
user
.
getAccountNo
().
equals
(
consignment
.
getShipperAccount
()))){
if
(!
user
.
getUserUuid
().
equals
(
consignment
.
getUserUuid
())
&&
(!
StringUtils
.
isEmpty
(
user
.
getAccountNo
())
&&
!
user
.
getAccountNo
().
equals
(
consignment
.
getShipperAccount
()))
&&
(!
StringUtils
.
isEmpty
(
consignment
.
getUserInputShipperAccount
())
&&
!
consignment
.
getUserInputShipperAccount
().
equals
(
consignment
.
getShipperAccount
()))){
consignment
.
setRecipientContactName
(
null
);
consignment
.
setRecipientCompany
(
null
);
consignment
.
setDocNondocFlag
(
null
);
...
...
Please
register
or
login
to post a comment