fix: 修复查询满减活动和优惠券活动报错问题

This commit is contained in:
paulGao
2022-09-14 17:11:26 +08:00
parent f375432e7d
commit cbdcb6f1ce
2 changed files with 0 additions and 2 deletions

View File

@@ -41,7 +41,6 @@ public class CouponStoreController {
@GetMapping
@ApiOperation(value = "获取优惠券列表")
public ResultMessage<IPage<CouponVO>> getCouponList(CouponSearchParams queryParam, PageVO page) {
page.setNotConvert(true);
String storeId = Objects.requireNonNull(UserContext.getCurrentUser()).getStoreId();
queryParam.setStoreId(storeId);
IPage<CouponVO> coupons = couponService.pageVOFindAll(queryParam, page);