Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ufo
/
ufo-platform
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
caoyan
6 years ago
Commit
0cc9fcbd304123d1df13ab7426a3d3af197cfe1a
1 parent
de6aa044
订单管理
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
order/src/main/java/com/yoho/ufo/order/service/impl/BuyerOrderServiceImpl.java
order/src/main/java/com/yoho/ufo/order/service/impl/BuyerOrderServiceImpl.java
View file @
0cc9fcb
...
...
@@ -4,6 +4,7 @@ import java.util.ArrayList;
import
java.util.Collections
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.concurrent.TimeUnit
;
import
java.util.stream.Collectors
;
import
org.apache.commons.collections.CollectionUtils
;
...
...
@@ -270,10 +271,10 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService {
bo
.
setExpressCompanyId
(
req
.
getExpressCompanyId
());
bo
.
setWayBillCode
(
req
.
getWaybillCode
());
bo
.
setDepotNum
(
req
.
getDepotNo
());
LOGGER
.
info
(
"callAppraise startTime is {}"
,
DateUtil
.
getCurrentTimeSecond
());
JSONObject
jsonObject
=
serviceCaller
.
asyncCall
(
args
,
bo
,
JSONObject
.
class
).
get
(
5
);
LOGGER
.
info
(
"callAppraise endTime is {}"
,
DateUtil
.
getCurrentTimeSecond
());
LOGGER
.
info
(
"call ufo-gateway interface is {},result is {}"
,
args
,
jsonObject
.
toJSONString
());
LOGGER
.
info
(
"callAppraise orderCode is {}, startTime is {}"
,
orderCode
,
DateUtil
.
getCurrentTimeSecond
());
JSONObject
jsonObject
=
serviceCaller
.
asyncCall
(
args
,
bo
,
JSONObject
.
class
).
get
(
5
,
TimeUnit
.
SECONDS
);
LOGGER
.
info
(
"callAppraise orderCode is {}, endTime is {}"
,
orderCode
,
DateUtil
.
getCurrentTimeSecond
());
LOGGER
.
info
(
"call ufo-gateway orderCode is {}, interface is {},result is {}"
,
orderCode
,
args
,
jsonObject
.
toJSONString
());
return
jsonObject
;
}
...
...
Please
register
or
login
to post a comment