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-25 15:03:35 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1a187b02a0d5c905965758c9e1f473b6ce278907
1a187b02
1 parent
ca7039cd
biz-customer | 修改 | 运单提交逻辑调整
mt 2024年12月25日15:03:30
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
9 deletions
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/util/service/biz/ConsignmentUtil.java
View file @
1a187b0
...
...
@@ -79,16 +79,19 @@ public class ConsignmentUtil {
consignment
.
setCreateTime
(
nowDate
);
consignment
.
setCreateUserName
(
user
.
getUserName
());
consignment
.
setCreateUserId
(
user
.
getId
());
//用户录入数据拷贝
BeanUtils
.
copyProperties
(
consignmentBo
,
consignment
);
}
else
{
//用户录入shipperaccount
consignment
.
setUserInputShipperAccount
(
consignmentBo
.
getShipperAccount
());
//始发国名称
consignment
.
setUserInputOriginCountry
(
consignmentBo
.
getOriginCountry
());
//始发国编码
consignment
.
setUserInputOriginCountryCode
(
consignmentBo
.
getOriginCountryCode
());
}
//运单号
consignment
.
setConsignmentCode
(
consignmentBo
.
getConsignmentCode
());
//目的国全称
consignment
.
setDestinationCountry
(
consignmentBo
.
getDestinationCountry
());
//目的国编码
consignment
.
setDestinationCountryCode
(
consignmentBo
.
getDestinationCountryCode
());
//用户录入shipperaccount
consignment
.
setUserInputShipperAccount
(
consignmentBo
.
getShipperAccount
());
//始发国名称
consignment
.
setUserInputOriginCountry
(
consignmentBo
.
getOriginCountry
());
//始发国编码
consignment
.
setUserInputOriginCountryCode
(
consignmentBo
.
getOriginCountryCode
());
}
else
{
consignment
.
setModifyTime
(
nowDate
);
consignment
.
setModifyUserName
(
user
.
getUserName
());
...
...
Please
register
or
login
to post a comment