Authored by caoyan

订单管理

... ... @@ -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;
}
... ...