Commit e47c853a by 徐康

bugfix 催单

parent 1f3ca7df
...@@ -2826,8 +2826,8 @@ public class OrderServiceImpl implements Orderservice { ...@@ -2826,8 +2826,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