Ver Fonte

feat(income): add pagination info to cash out record list

- Added currentPage, pageSize, total, and totalPages fields to the response VO
- Updated log message to include pagination details
- Enhanced cash out record list API with full pagination support
wxd há 2 semanas atrás
pai
commit
511c91c4be

+ 3 - 3
alien-store-platform/src/main/java/shop/alien/storeplatform/service/impl/CouponManageServiceImpl.java

@@ -235,9 +235,9 @@ public class CouponManageServiceImpl implements CouponManageService {
     private R<String> validateCouponUnavailableDate(LifeCoupon lifeCoupon) {
         // 限制日期: 1234567;节日id
         if ("2".equals(lifeCoupon.getUnusedType())) {
-            if (StringUtils.isEmpty(lifeCoupon.getUnavaiLableDate())) {
-                return R.success("无不可用日期限制");
-            }
+//            if (StringUtils.isEmpty(lifeCoupon.getUnavaiLableDate())) {
+//                return R.success("无不可用日期限制");
+//            }
 
             LocalDate nowDate = LocalDate.now();
             DayOfWeek dayOfWeek = nowDate.getDayOfWeek();