驿站退款

This commit is contained in:
sxu 2025-04-28 17:24:14 +08:00
parent 9af6395780
commit fe539b10e8
1 changed files with 1 additions and 6 deletions

View File

@ -141,18 +141,13 @@ public class OrderInfoMobileController extends BaseController {
)
public AjaxResult stageRefundMobile(@RequestHeader Map<String, String> headers,
@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) {
return AjaxResult.error("交易ID不能为空");
}
UnifyRefundVO resultVO = this.orderRefundBusiness.stageRefund(request);
return AjaxResult.success(resultVO);
}
//
// @PostMapping({"/book/stat"})
// public LeResponse<OrderBookStatMobileVO> orderBookStat(@RequestHeader Map<String, String> headers, @RequestBody LeRequest<?> request) {
// OrderBookStatMobileVO stat = this.reportOrderApi.getBookStat(HeaderFetchUtil.getCustId(headers));