diff --git a/fuintAdmin/src/views/EventMarketing/SaveBlock/index.vue b/fuintAdmin/src/views/EventMarketing/SaveBlock/index.vue index e2863c4ed..ae260108d 100644 --- a/fuintAdmin/src/views/EventMarketing/SaveBlock/index.vue +++ b/fuintAdmin/src/views/EventMarketing/SaveBlock/index.vue @@ -101,7 +101,7 @@ - - + -->
-
已使用卡量
+
未使用卡量
暂无数据...
@@ -125,7 +125,7 @@
-
未使用卡量
+
已使用卡量
暂无数据...
@@ -165,17 +165,15 @@
-
+ +
+ 电子礼品卡列表
- - - - + --> diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activeOneCoupon/controller/ActiveOneCouponController.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activeOneCoupon/controller/ActiveOneCouponController.java index c2129aac3..778c985f8 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activeOneCoupon/controller/ActiveOneCouponController.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activeOneCoupon/controller/ActiveOneCouponController.java @@ -88,5 +88,6 @@ public class ActiveOneCouponController extends BaseController { public ResponseObject delete(@RequestParam("idList") List idList) { return getSuccessResult(this.activeOneCouponService.removeByIds(idList)); } + } diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activeOneCoupon/service/impl/ActiveOneCouponServiceImpl.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activeOneCoupon/service/impl/ActiveOneCouponServiceImpl.java index c559eaf4c..be3b54008 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activeOneCoupon/service/impl/ActiveOneCouponServiceImpl.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activeOneCoupon/service/impl/ActiveOneCouponServiceImpl.java @@ -73,11 +73,11 @@ public class ActiveOneCouponServiceImpl extends ServiceImpl i if(ObjectUtils.isNotEmpty(cardGift.getStatus())) { queryWrapper.eq(CardGift::getStatus,cardGift.getStatus()); } - if(ObjectUtils.isNotEmpty(cardGift.getStatus())) { + if(ObjectUtils.isNotEmpty(cardGift.getSailStatus())) { queryWrapper.eq(CardGift::getSailStatus,cardGift.getSailStatus()); } - if(ObjectUtils.isNotEmpty(cardGift.getStatus())) { + if(ObjectUtils.isNotEmpty(cardGift.getCardAmount())) { queryWrapper.eq(CardGift::getCardAmount,cardGift.getCardAmount()); } queryWrapper.eq(CardGift::getStoreId, TokenUtil.getNowAccountInfo().getStoreId()); diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/cardValue/service/impl/CardValueServiceImpl.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/cardValue/service/impl/CardValueServiceImpl.java index 320a9faed..76bf71055 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/cardValue/service/impl/CardValueServiceImpl.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/cardValue/service/impl/CardValueServiceImpl.java @@ -262,13 +262,14 @@ public class CardValueServiceImpl extends ServiceImpl queryWrapper = new LambdaQueryWrapper<>();