驿站退款
This commit is contained in:
parent
9af6395780
commit
fe539b10e8
|
|
@ -141,18 +141,13 @@ public class OrderInfoMobileController extends BaseController {
|
||||||
)
|
)
|
||||||
public AjaxResult stageRefundMobile(@RequestHeader Map<String, String> headers,
|
public AjaxResult stageRefundMobile(@RequestHeader Map<String, String> headers,
|
||||||
@RequestBody StageRefundParam request) {
|
@RequestBody StageRefundParam request) {
|
||||||
String sign = HeaderFetchUtil.getSign(headers);
|
|
||||||
if(StringUtils.isBlank(sign) || !sign.equals(StageWhiteList.STAGE_SIGN_WHITE_LIST)) {
|
|
||||||
return AjaxResult.error("签名失败");
|
|
||||||
}
|
|
||||||
if(request.getTradeId() == null) {
|
if(request.getTradeId() == null) {
|
||||||
return AjaxResult.error("交易ID不能为空");
|
return AjaxResult.error("交易ID不能为空");
|
||||||
}
|
}
|
||||||
|
|
||||||
UnifyRefundVO resultVO = this.orderRefundBusiness.stageRefund(request);
|
UnifyRefundVO resultVO = this.orderRefundBusiness.stageRefund(request);
|
||||||
return AjaxResult.success(resultVO);
|
return AjaxResult.success(resultVO);
|
||||||
}
|
}
|
||||||
//
|
|
||||||
// @PostMapping({"/book/stat"})
|
// @PostMapping({"/book/stat"})
|
||||||
// public LeResponse<OrderBookStatMobileVO> orderBookStat(@RequestHeader Map<String, String> headers, @RequestBody LeRequest<?> request) {
|
// public LeResponse<OrderBookStatMobileVO> orderBookStat(@RequestHeader Map<String, String> headers, @RequestBody LeRequest<?> request) {
|
||||||
// OrderBookStatMobileVO stat = this.reportOrderApi.getBookStat(HeaderFetchUtil.getCustId(headers));
|
// OrderBookStatMobileVO stat = this.reportOrderApi.getBookStat(HeaderFetchUtil.getCustId(headers));
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue