Commit dadcffb6 by zhiheng.zhang

自动确认收货日子

parent 55fa07f3
...@@ -149,6 +149,9 @@ public class MallOrderServiceImpl implements MallOrderService { ...@@ -149,6 +149,9 @@ public class MallOrderServiceImpl implements MallOrderService {
@Autowired @Autowired
private CouponActivityService couponActivityService; private CouponActivityService couponActivityService;
@Autowired
private AssortmentCustomerInfoManager assortmentCustomerInfoManager;
/** /**
* 创建订单 * 创建订单
*/ */
...@@ -1002,6 +1005,11 @@ public class MallOrderServiceImpl implements MallOrderService { ...@@ -1002,6 +1005,11 @@ public class MallOrderServiceImpl implements MallOrderService {
@Override @Override
public BaseResponse orderReceive(OrderReceiveRequestVO requestVO) { public BaseResponse orderReceive(OrderReceiveRequestVO requestVO) {
BaseResponse result = new BaseResponse(); BaseResponse result = new BaseResponse();
AssortmentCustomerInfoVo assortmentCustomerInfoVo = assortmentCustomerInfoManager.getCustomerInfoByObject(requestVO.getSessionId());
if (assortmentCustomerInfoVo == null || StringUtils.isEmpty(assortmentCustomerInfoVo.getMemberId())) {
return ResponseUtil.error(ResponseResult.NOT_LOGIN);
}
try { try {
String trackingNo = LogTreadLocal.getTrackingNo(); String trackingNo = LogTreadLocal.getTrackingNo();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment