|
@@ -265,12 +265,14 @@ public class ExpressInfoServiceImpl implements IExpressInfoService { |
|
@@ -265,12 +265,14 @@ public class ExpressInfoServiceImpl implements IExpressInfoService { |
265
|
LOGGER.warn("queryExpressDetailInfo check order not match buyer , uid = {} ,order is {} ", orderCode ,JSON.toJSONString(buyerOrder) );
|
265
|
LOGGER.warn("queryExpressDetailInfo check order not match buyer , uid = {} ,order is {} ", orderCode ,JSON.toJSONString(buyerOrder) );
|
266
|
throw new UfoServiceException(400,"订单物流不允许买家用户查询");
|
266
|
throw new UfoServiceException(400,"订单物流不允许买家用户查询");
|
267
|
}
|
267
|
}
|
|
|
268
|
+ break;
|
268
|
case SELL:
|
269
|
case SELL:
|
269
|
if(!uid.equals(buyerOrder.getSellerUid())){
|
270
|
if(!uid.equals(buyerOrder.getSellerUid())){
|
270
|
//验证是卖家
|
271
|
//验证是卖家
|
271
|
LOGGER.warn("queryExpressDetailInfo check order not match seller , uid = {} ,order is {} ", orderCode ,JSON.toJSONString(buyerOrder) );
|
272
|
LOGGER.warn("queryExpressDetailInfo check order not match seller , uid = {} ,order is {} ", orderCode ,JSON.toJSONString(buyerOrder) );
|
272
|
throw new UfoServiceException(400,"订单物流不允许卖家用户查询");
|
273
|
throw new UfoServiceException(400,"订单物流不允许卖家用户查询");
|
273
|
}
|
274
|
}
|
|
|
275
|
+ break;
|
274
|
}
|
276
|
}
|
275
|
}
|
277
|
}
|
276
|
|
278
|
|