后台主页逻辑加规则,账单详情改变接口传参方式,vip同步小程序,后台营业执照日期格式,银盛回调暂时在测试服上
This commit is contained in:
@@ -1296,8 +1296,8 @@ public class MerchantOrderController {
|
||||
merchantIncomeService.saveMerchantIncome(merchantIncome);
|
||||
}
|
||||
|
||||
@GetMapping("/couponList/{orderNumber}")
|
||||
public Result<List<Map<String, Object>>> getCouponListByOrderNumber(@PathVariable("orderNumber") String orderNumber) {
|
||||
@GetMapping("/couponList")
|
||||
public Result<List<Map<String, Object>>> getCouponListByOrderNumber(String orderNumber) {
|
||||
List<Map<String, Object>> couponList = merchantOrderService.getCouponList(orderNumber);
|
||||
return ResultGenerator.genSuccessResult(couponList);
|
||||
}
|
||||
|
||||
@@ -58,6 +58,7 @@ public class TokenRegistryInterceptor extends HandlerInterceptorAdapter {
|
||||
limitUri.add("/api/merchantOrder/posScanPay");
|
||||
limitUri.add("/api/merchantOrder/pos/tradeQuery");
|
||||
limitUri.add("/api/merchantOrder/returnOrder");
|
||||
limitUri.add("/api/memberOrder");
|
||||
boolean passFlag = limitUri.stream().anyMatch(s -> s.equals(requestUri) || requestUri.startsWith(s));
|
||||
if (passFlag) {
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user