...
|
...
|
@@ -10,6 +10,7 @@ import org.apache.commons.lang3.StringUtils; |
|
|
import org.slf4j.Logger;
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
...
|
...
|
@@ -535,6 +536,16 @@ public class BuyerOrderController { |
|
|
return new ApiResponse.ApiResponseBuilder().code(200).message("查询成功").data(null == result ? new PageResponseBO<BuyerOrderResp>() : result).build();
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "/queryIsExistCsCancelOrder")
|
|
|
public ApiResponse queryIsExistCsCancelOrder(BuyerOrderReq req) {
|
|
|
LOGGER.info("queryIsExistCsCancelOrder in. param is {}", req);
|
|
|
if(StringUtils.isEmpty(req.getSellerWaybillCode())) {
|
|
|
return new ApiResponse.ApiResponseBuilder().code(400).message("卖家快递单号不能为空").build();
|
|
|
}
|
|
|
boolean result = buyerOrderService.queryIsExistCsCancleOrder(req.getSellerWaybillCode());
|
|
|
return new ApiResponse.ApiResponseBuilder().code(200).message("查询成功").data(result).build();
|
|
|
}
|
|
|
|
|
|
|
|
|
@RequestMapping(value = "/queryIdentifyCenter")
|
|
|
public ApiResponse queryIdentifyCenter() {
|
...
|
...
|
|