Commit e7ad0d95 by 徐康

bugfix 催单

parent a4a3ef3c
...@@ -2938,8 +2938,8 @@ public class OrderServiceImpl implements Orderservice { ...@@ -2938,8 +2938,8 @@ public class OrderServiceImpl implements Orderservice {
dto.setDeliveryId(orderBean.getAddInfo().getDeliveryId()); dto.setDeliveryId(orderBean.getAddInfo().getDeliveryId());
} }
QueryDeliveryAmountResponseDto responseDto = deliveryFeiginClient.orderRemind(dto); QueryDeliveryAmountResponseDto responseDto = deliveryFeiginClient.orderRemind(dto);
if(null != response && 120 == responseDto.getCode()) { if(null != responseDto && 120 == responseDto.getCode()) {
return ResponseUtil.error("120", response.getErrmsg()); return ResponseUtil.error("120", responseDto.getMsg());
} }
if(responseDto == null || RESPONSE_SUCCESS_CODE != responseDto.getCode()) { if(responseDto == null || RESPONSE_SUCCESS_CODE != responseDto.getCode()) {
return ResponseUtil.error(ResponseResult.DELIVERY_REMINDER_ERROR); return ResponseUtil.error(ResponseResult.DELIVERY_REMINDER_ERROR);
......
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